0
<script type="text/javascript">
$(function(){
$("#headings_help").click(function(){
$("#box").dialog({

    title: 'Heading and Subheading IDs',
    width: 700,
    height:300,
    modal:true,
    resizable:false,
    buttons: [
    {
      text: 'Close',
      click: function(){
      $(this).dialog('close');
    }
    }
    ]

    });
    });


});
</script>

对于上述javascript内容,假设您将此内联元素作为表单的一部分:

Help<a id='headings_help' ><img src='questionmark.png' border='0' /></a>

假设上面的问号出现在网页的多个位置,该jquery代码仅适用于问号链接的第一个实例。它不适用于同一页面上的其他问号。

4

4 回答 4

1
change this
Help<a class='headings_help' ><img src='questionmark.png' border='0' /></a>
and then
<script type="text/javascript">
$(function(){
$(".headings_help").click(function(){
$("#box").dialog({

    title: 'Heading and Subheading IDs',
    width: 700,
    height:300,
    modal:true,
    resizable:false,
    buttons: [
    {
      text: 'Close',
      click: function(){
      $(this).dialog('close');
    }
    }
    ]

    });
    });


});
</script>
于 2013-02-27T15:01:42.773 回答
0

答案不是使用id,而是使用通用类。

ID 是单数的,它们不会在页面上重复。

所以将 ids 更改为一个类

<a class='headings_help' ><img src='questionmark.png' border='0' /></a>

更改选择器以使用类

$(".headings_help").on("click, function(){...});
于 2013-02-27T14:44:39.613 回答
0
 apply same css class to all links 

 then use 

 $(".className").click(function(){
      .........
})

我们不能将 ont id 用于多个元素。当您想将事件应用于多个元素时,将 css 类应用于所有元素然后使用。

于 2013-02-27T14:46:48.743 回答
0
// Get all the links that have an image with `src` `questionmark.png`
var $Links = $.map($('a img[src="questionmark.png"]'), function () {
    return $(this).parent(); // return the parent
});

// Apply click for each of the links
$Links.click(function () {
    // Do your stuff here.
});
于 2013-02-27T14:53:05.963 回答