我有一个名为 isTouchscreen 的布尔变量和一些 on('hover', ...) 事件。如果 isTouchscreen 布尔变量等于 true,那么我需要将 on('hover') 事件更改为 on('click') 事件。这可能吗?
就像是:
$(".smart-suggestions").on("hover", ".option", function(){
$('.img-container img').show();
//and do more stuff....
});
if(touchscreen==true){
//change onhover event to onclick event
}