电光石火-穿越时空电光石火-穿越时空


标签 js

html

js按键记录

似水的流年 阅读(251) 评论(0)

<html> <head> <meta http-equiv="Content-Type" content="text/htm...

html

jquery on绑定click事件执行多次

似水的流年 阅读(1094) 评论(0)

用$(document).on('click','#XX',function(){...})为元素添加点击事件 结果导致事件会执行多次 。出现这种情况是因为每点击一下document就会绑定一遍...

html

JS数组操作

似水的流年 阅读(1324) 评论(0)

一、删除1.清空数组var ary = [1,2,3,4]; ary.splice(0,ary.length);//清空数组 console.log(ary); // 输出 [],空数组,即...

html

js判断方法是否存在

似水的流年 阅读(1099) 评论(0)

if(typeof yourfunctionname === 'function'){ //存在且是function } else{ //不存在或不是function }或者typ...