gpt4 book ai didi

javascript - 获取 iframe 内的标签

转载 作者:行者123 更新时间:2023-12-02 19:55:29 25 4
gpt4 key购买 nike

有人可以告诉我如何通过 JavaScript 访问 iframe 内的 label1 吗?

WebForm1.aspx

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div class="calendar">
<iframe src="WebForm2.aspx"></iframe>
</div>
</form>
</body>
</html>

WebForm2.aspx

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<table>
<tr><td class="default"><label id="label1">Label1</label></td></tr>
</table>
</div>
</form>
</body>
</html>

最佳答案

给 iframe 一个 Id 例如

<iframe src="WebForm2.aspx" id="webForm" ></iframe>

然后,为了访问字段“lable1”,您需要提供以下代码

(document.getElementById("webForm")).contentWindow.document.getElementById("label1").innerHTML;

希望这对你有帮助

关于javascript - 获取 iframe 内的标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8686557/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com