我有这段代码
$("#mainPageSlider").click(function(){
event.preventDefault();
console.log("I am here");
]);
我的HTML是
<a href="admin/category/cloths">
<img src="image/catalog/myimage.jpg" alt="Slider" id="mainPageSlider">
如果链接admin / category / cloths存在,我的代码会显示console.log消息,但是如果该链接不存在,它似乎忽略了我的点击代码,只是转到另一个未找到页面的页面。我做错了什么?