js
文章平均质量分 81
wangtianqiboke
这个作者很懒,什么都没留下…
展开
-
js实现一个元素的拖拽功能
<divclass="box"style="width:100px;height:100px;background:red;position:absolute;"></div><script>varbox=document.querySelector('.box')//需要鼠标按下事件onmousedown移动事件onmousenove松开事件onmouseup所拖拽的块儿必须有定位属性...原创 2020-07-15 13:42:45 · 585 阅读 · 0 评论 -
JS清除浮点数的方法
话不多说直接上代码:首先,思路是把小数化为整数进行运算再变成小数第一步:需要知道小数点后面有几位小数functiondigitLength(e){vare1=(e+'').split('');//把数值转为字符串,然后转为数组方便获取小数点的索引vare2=e1.findIndex((item)=>item='.')returne1.length-1-e2;//小数点后...原创 2020-07-14 11:48:13 · 2315 阅读 · 0 评论 -
图片上传跟预览
<!doctype html><html lang="en"><head><meta charset="UTF-8"><title>上传图片</title></head><body><div class="yanzRight"><input ...原创 2021-04-08 14:19:45 · 93 阅读 · 0 评论