0

目前我在子窗口中使用脚本来访问放置在父窗口中的 asp 按钮 hdnbtnrefresh

var btn = top.opener.document.getElementById("hdnbtnrefresh");

但它返回 null

4

2 回答 2

0

试试 window.opener.$("#hdnbtnrefresh")

快乐编码!!!

于 2012-11-02T11:10:10.313 回答
0

为什么不直接使用带有 id 的 jquery 选择器:

$("#hdnbtnrefresh")

对于父节点,您可以使用 parent()

$("#hdnbtnrefresh").parent()

文档在这里: http ://api.jquery.com/parent/

另一种方式:

$('#hdnbtnrefresh', window.parent.document).html();
于 2012-11-02T10:37:36.577 回答