js中鼠标的单击以及双击事件

html中,onclick为单击事件,ondblclick为双击事件

js中定义方法,注意这里用到了定时器来区分单击和双击事件

var timeoutID= null;
		window.infoFun = function(flatId, topicId) {
			clearTimeout(timeoutID);
            timeoutID= window.setTimeout(function(){
            	alert("单击事件");
            }, 200);
        }
		
		window.editFun = function(flatId, topicId) {
			clearTimeout(timeoutID);
            alert("双击事件");
        }

你可能感兴趣的:(js)