我有这段代码:
头脑中:
$(document).ready(function() {
$("#mostrarPlay").click(function(){
alert('Hello');
});
});
并在体内
<a class="btn" id='mostrarPlay' href='#'>Play</a>
在Brackets编辑器中脉动“运行”图标时可以正常工作,但在使用谷歌浏览器时,它不起作用。
有什么想法吗?
最好的问候
答案 0 :(得分:0)
我的工作正常,请查看以下代码:
<html>
<head>
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
</head>
<body>
<a class="btn" id='mostrarPlay' href='#'>Play</a>
<script>
$(document).ready(function() {
$("#mostrarPlay").click(function(){
alert('Hello');
});
});
</script>
</body>
<html>
警报在Google Chrome中正常显示。如果您有任何疑问,请告诉我