0

我正在使用 jquery 对话框弹出窗口。我有多个 div(动态创建),需要在单个页面上弹出窗口。我当前的问题是当我单击 .open 时,所有(10)个弹出窗口都打开了,我怎样才能只触发一个?

我的html如下:

      <a class="open" href="#">
          <img src="/images/someImage1.jpg" />
      </a>

    <div class="dialog" title="Gives Dialog Title"><!-- This is display:none in css-->
    <p> Dialog text and stuff</p>
   </div>

   <a class="open" href="#">
          <img src="/images/someImage1.jpg" />
      </a>

    <div class="dialog" title="Gives Dialog Title"><!-- This is display:none in css-->
    <p> Dialog text and stuff</p>
   </div>

我的jquery如下:

   <script type="text/javascript"> // added .dialog:disaplay:none; to desktop.css


  $(document).ready(function () {

      $('a.open').prop('id', function (i) {
          return '' + (i + 1);
      });

      $(".dialog").dialog({
              autoOpen: false,
              draggable: false,
              width: "300px",
              modal: true,
              buttons: {
                  "Close": function () {
                      $(this).dialog('destroy').remove()
                  }
              }

          });

      $("#1,#2,#3,#4,#5,#6,#7,#8,#9,#10")

   .click(function () {
  alert($(this).attr("id"));

  $(".dialog").dialog("open");
  return false;
   });
  });

    </script>
4

3 回答 3

2

这应该有效(或它的变体)。

$("#1,#2,#3,#4,#5,#6,#7,#8,#9,#10").click(function () {
  alert($(this).attr("id"));

  $(this).next(".dialog").dialog("open");
  return false;
});
于 2013-10-08T19:49:41.200 回答
0

我觉得有必要告诉你只使用一个类作为你的点击处理程序

$(".open").click(function(e) {
    e.preventDefault();
    $(this).next(".dialog").dialog("open");
});

如果您不使用它们,则不需要 ID。

于 2013-10-08T19:51:41.230 回答
0

如果我正确阅读了您的代码,那么您正在做的是

$('.dialog').dialog('open');

即,您将掌握所有使用对话框类的元素。自然,这会同时打开所有对话框。如果您按照以下方式重写标记

<div class="dialog" title="Gives Dialog Title" id='diaOne'><!-- This is display:none in css-->
  <p> Dialog text and stuff</p>
</div>

然后做

$('#diaOne').dialog('open');//grab just the dialog bearing the id diaOne.

我应该怀疑这样做

于 2013-10-08T19:51:46.053 回答