怎么按元素id 使用js为页面元素绑定click()方法?
在function(e){}函数体中用语句
e.preventDefault();
$('#id').click(function(e) {
e.preventDefault();
});
错在:这个是jquery代码,没有加载jquery库就不能运行,其次,这个return false不对。
扩展资料:
js事件绑定方式总结(click事件)
1、HTML onclick事件属性
<button onclick="clickMe(this)">click me</button>
function clickMe(this) {2 alert("click me");3 }
2、JavaScript onclick事件
<button id="button">click me</button>
document.getElementById("button").onclick=clickMe;
3、IE4+<script for>
1 <button id="button1">click me</button>
1 <script for="button1" event="onclick">2 alert("click me");3 </script>
4、IE5/windows attachEvent()方法
<button id="button2">click me</button>
document.getElementById("button2").attachEvent("onclick",clickMe);
5、W3C DOM addEventListener()方法
<button id="button3">click me</button>
document.getElementById("button3").addEventListener("click",clickMe);
2024-07-18 广告
你那个return false代码的位置放错了
你没有放在点击事件里面,这样,a链接点击了之后,会跳转页面,alert来不及弹出
其次,你这个return false不对。
如果你不想让这个a连接跳转,应该是
在function(e){}函数体中用语句
e.preventDefault();
$('#id').click(function(e) {
e.preventDefault();
});
最后我用
$("*").click(function(){
var $this = $(this);
alert($this.attr("id"));
return false;
});
测了一下,报的是我上层table的id,好像进不去到我这一单元格,怎么办?
干嘛要用 * ?
document.getElementById(id).onclick=function(){}//内容写在函数体里
或者用jquery
$("#a").click(function(){ });
</a>
$(function(){
$("#cshi").click(function(){
alert(1);
})
return false;
})
这样是好使的 你可能哪里写的错了 在调下吧