我正在尝试对标签的单击事件发出警报,但它似乎不起作用。这是代码。我把这个放在标题里。php
<script>
jQuery(function() {
jQuery(\'.neha\').click(function () {
var addressValue = $(this).attr("href");
alert(addressValue );
})
});
</script>
HTML代码是
<a class="neha" href="ID-1">neha</a>
我添加了这个,但没有显示任何内容。