目前我在子窗口中使用脚本来访问放置在父窗口中的 asp 按钮 hdnbtnrefresh
var btn = top.opener.document.getElementById("hdnbtnrefresh");
但它返回 null
目前我在子窗口中使用脚本来访问放置在父窗口中的 asp 按钮 hdnbtnrefresh
var btn = top.opener.document.getElementById("hdnbtnrefresh");
但它返回 null
试试 window.opener.$("#hdnbtnrefresh")
快乐编码!!!
为什么不直接使用带有 id 的 jquery 选择器:
$("#hdnbtnrefresh")
对于父节点,您可以使用 parent()
$("#hdnbtnrefresh").parent()
文档在这里: http ://api.jquery.com/parent/
另一种方式:
$('#hdnbtnrefresh', window.parent.document).html();