我是新來的jquery,我想知道是否有可能改變所有點擊事件(特定div內的元素)雙擊使用jQuery的事件?提前謝謝了。將一個事件偵聽器更改爲另一個事件偵聽器?
function isTouchDevice(){
return (typeof(window.ontouchstart) != 'undefined') ? true : false;
}
if(isTouchDevice()===true){
//change click events to doubleclick events
}
'(typeof運算(window.ontouchstart)= '未定義'!)? true:false;'是多餘的。使用'(typeof(window.ontouchstart)!=='undefined')' – Joe