如何改变一帧的dom再见另一帧的事件?

时间:2010-12-08 07:19:32

标签: javascript jquery html jsp jsp-tags

我有一页,我已经编写了代码

  

我正在使用jquery。现在我想在一些FormView.jsp的div中追加一些html元素,以响应showFormPage.jsp中触发的一些事件。

我该怎么办? 帮帮我......

1 个答案:

答案 0 :(得分:1)

在您的事件处理程序中,您可以在另一个名为section的框架中定位一个名为other_frame的元素ID,如下所示:

$("#button").click(function() { 
  $("#section", top.frames["other_frame"].document).append("<b>your html elements</b>");
});