gpt4 book ai didi

jquery移动点击事件?

转载 作者:行者123 更新时间:2023-12-01 00:53:30 25 4
gpt4 key购买 nike

jQuery Mobile 建议使用点击事件而不是单击事件,因为单击会增加延迟。

所以如果我有:

   <a id="someID" href="#" onclick="someFunction(); return false">asd </a>

如何将其更改为内联点击事件?

我可以这样做:

$('#someID').live('tap',function(event) { ... });

但不想在我的脚本中包含 ID,因此更喜欢内联调用函数

最佳答案

您想要这个解决方案吗?

HTML:

<div ontap="test()">TAP ME</div>

脚本:

$('[ontap]').each(function(){
$(this).on("tap", new Function($(this).attr("ontap")));
});

关于jquery移动点击事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8813905/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com