摘要: 冒泡和捕获的顺序(先从上往下捕获,后从下往上冒泡) 2.event.stopPropagation()阻止 click 事件冒泡到父元素。 3.event.preventDefault() 默认事件指的是,标签这类有默认行为的标签,通过点击可以跳转或提交。我们给这类标签绑定一个点击事件,设置事件对象 阅读全文
posted @ 2022-11-14 12:23 木莲 阅读(44) 评论(0) 推荐(0) 编辑
摘要: parseInt(123.34)=123(保留整数) Math.ceil(123.34)=124(向上取整) Math.floor(123.34)=123(向下取整) Math.round(123.34)=123,Math.round(123.56)=124四舍五入 123.234.toFixe(2 阅读全文
posted @ 2022-11-10 17:12 木莲 阅读(335) 评论(0) 推荐(0) 编辑
摘要: #input type='number' 去除小箭头 两种方法 方法一 For chrome, Safari, Edge, Opera : input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-app 阅读全文
posted @ 2022-11-08 15:39 木莲 阅读(183) 评论(0) 推荐(0) 编辑