您能否告诉我为什么按钮点击事件不会在jsfiddle中触发?
我想停止传播并防止默认,但我被卡住了。
$(document).ready(function() {
$("#btn").click(function(){
alert("button");
});
});
答案 0 :(得分:2)
试试这个
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function() {
$("#btn").click(function(){
alert("button");
});
});
</script>
</head>
<body>
<button id="btn">test</button>
</body>
</html>