我的 java 脚本代码出了点问题。我有一个基本的 html 页面和这段代码
<div class="myclass" id="myid">
<h3 class="myotherclass"><?php echo _("Some sentence"); ?></h3>
</div>
当我把这个脚本:
<script type="text/javascript">
$("div").click(function () {
alert('hello');
});
</script>
单击 div 标签会触发警报消息,但是当我输入以下内容时:
<script type="text/javascript">
$("h3").click(function () {
alert('hello');
});
</script>
什么都没有触发。有人可以解释一下吗?