Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过java脚本将点击添加到html按钮,以便它启动Onclick功能。我尝试了下一个代码:
Onclick
$("#mydiv").html('bind("'tap'", Onclick)');
没有添加到 html 中。
有任何想法吗?
大多数移动浏览器将点击转换为点击事件。所以只需使用
$("#mydiv").click(function(){ // do stuff });
.bind()您可以使用该方法绑定点击事件。
.bind()
$("#mydiv").bind('tap', tapHandler); function tapHandler() { // handle tap ... }