当前位置:网站首页>DOM learning - add + - button
DOM learning - add + - button
2022-04-23 08:25:00 【beinlife】
<button οnclick="calc(this)">-</button>
<span>1</span>
<button οnclick="calc(this)">+</button>
</td>
function calc(btn){
// Find the next span:
//1、 Look up td
var td=btn.parentNode;// Climb up the tree
//2、 stay td Look under span
var span=td.getElementsByTagName("span")[0];// Climb down the tree
//3、 Take out span Number of numbers n
var num=span.innerHTML;
//4、 If btn yes +, be n++, otherwise n--
btn.innerHTML=="+"?num++:num--;
//5、 If n==0, Is changed to 1
num==0&&(num=1);
//6、 take n Put back span in
span.innerHTML=num;
}
版权声明
本文为[beinlife]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204230734169084.html
边栏推荐
猜你喜欢
MySQL数据库中delete、truncate、drop原理详解
信息收集相关知识点及题解
关于ORB——SLAM运行中关键帧位置越来越近的异常说明
LeetCode-199-二叉树的右视图
LeetCode中等题之旋转函数
项目上传部分
Community group purchase applet source code + interface DIY + nearby leader + supplier + group collage + recipe + second kill + pre-sale + distribution + live broadcast
5.6 综合案例-RTU-
excle加水印
青苹果影视系统源码 影视聚合 影视导航 影视点播网站源码
随机推荐
情境领导者-第七章、解决绩效问题
Detailed explanation of ansible automatic operation and maintenance (I) installation and deployment, parameter use, list management, configuration file parameters and user level ansible operating envi
Notes on English class (4)
社区团购小程序源码+界面diy+附近团长+供应商+拼团+菜谱+秒杀+预售+配送+直播
QT reads all files under the path or files of the specified type (including recursion, judging whether it is empty and creating the path)
Qt读写XML文件
WordPress love navigation theme 1.1.3 simple atmosphere website navigation source code website navigation source code
【学习】从零开始的音视频开发(9)——NuPlayer
Listed on the Shenzhen Stock Exchange: the market value is 5.2 billion yuan. Lu is the East and his daughter is American
单点登录 SSO
LeetCode简单题之统计字符串中的元音子字符串
Online yaml to XML tool
信息收集相关知识点及题解
Flink SQL实现流批一体
Idea: export Yapi interface using easyyapi plug-in
室内定位技术对比
Qt编译QtXlsx库
[effective go Chinese translation] function
vslam PPT
Sword finger offer Day24 math (medium)