jquery mobile 的tap事件,点击屏幕触发tap事件怎么写?而不是点击某一个元素触发,要点击屏幕的任何地方

2024-11-20 14:41:04
推荐回答(1个)
回答1:

$(document).on("tap",function(){
  $(this).hide();
});