0

我在 asp.net 中有 2 页。父.aspx 和子.aspx。parent.aspx 上有一个超链接,它将 child.aspx 加载到 div 中。此加载是使用 jquery 的 load 方法完成的。Child.aspx 有一个类似的代码

  $(".lnkButton").click(function() 
  { 
         /* code */
  }

现在我的问题是 - 每当我从 parent.aspx 加载 child.aspx 页面时,我想从 child.aspx 调用特定事件。我怎样才能做到这一点 ?

4

1 回答 1

1

只需选择您的目标元素并在其上触发事件,如下所示:

$(function(){  //ready
  $(".lnkButton").click(function() { 
    $('.childDiv').load('child.aspx',function(){ //load complete
      $('#parentDiv').trigger('click');  //replace 'click' with your event
    });
  });
});
于 2013-03-24T09:32:55.437 回答