-1

我有一个非常简单的问题:我不能用 jquery 调用图像。使用 a 标签的 id 它正在工作。我应该改变什么?

js:

$("#for_close").click(function(){
disablePopup();
});

html:

<img src="images/close-x.png" id="for_close" />

和图片有区别吗?谢谢!

没有准备好文档:

$(document).ready(function() {
   $("#pentru_close").click(function(){
disablePopup();
});
});

我不明白为什么这与文本有效:

<a id="pentru_close">x</a>

这不是:

 <img src="images/close-x.png" id="pentru_close" />
4

1 回答 1

1

jQuery - 确保您已将链接添加到您的 jQuery 文件

       $(document).ready(function()  {
           $("#for_close").click(function(){
            disablePopup();
            });
       });

        function disablePopup() {
         alert(' . . . ');
         }

HTML -

      <img src="images/close-x.png" id="for_close" />
于 2012-09-06T15:28:09.190 回答