我这里有一些代码。这在 Chrome 中运行良好,但在 IE 和 Firefox 中却不行。
$(document).ready(function(){
$(".thumb").click(function(){
alert ("Reached here.");
var cat_id = $(this).attr('id'); // get category id
alert (cat_id);
});
});
<a href="#" class="thumb" id = "20" name="df" >
<img src="images/dry_fruits.png" alt="Title #0" width="75" height="75"/>
</a>
它甚至没有在 Firefox 和 IE 中触发警报。有人可以帮我确定问题吗。
任何帮助将不胜感激。
德韦什