©
This document uses PHP Chinese website manual Release
轻击 <p> 元素并隐藏它:
效果预览 »$("p").on("tap",function(){
$(this).hide();
});
tap 事件在用户轻击一个元素时触发。
提示: tap 事件类似于 jQuery click() 方法。
$("selector").on("tap",function(event){...})
参数 | 描述 |
---|---|
function(event) | 必须。指定 tap 事件触发时执行的函数。 该函数有可选的事件对象 ,事件对象可以是任何 jQuery 事件属性 (例如 event.target, event.type, 等)。更多信息请查阅 jQuery 事件参考手册 。 |
事件对象
使用 event.target 属性返回tap事件触发的DOM元素。