摘要: 我在程序开发中定义了删除数组元素的代码: Array.prototype.remove = function(val){ var index = this.indexOf(val) if(index > -1){ //胶接,直接改变原数组 this.splice(index,1) } } 其中用到了 阅读全文
posted @ 2021-08-18 09:53 罗毅豪 阅读(924) 评论(0) 推荐(0) 编辑
摘要: H5页面多次点击元素,有时会变成蓝色选中状态。 解决方法: body{ -moz-user-select: none; /*火狐*/ -webkit-user-select: none; /*webkit浏览器*/ -ms-user-select: none; /*IE10*/ user-selec 阅读全文
posted @ 2021-08-18 09:41 罗毅豪 阅读(492) 评论(0) 推荐(0) 编辑