gpt4 book ai didi

javascript - 用javascript更改另一个html文件?

转载 作者:行者123 更新时间:2023-11-28 01:05:00 25 4
gpt4 key购买 nike

我有一个样本html文件。

<html>
<head>
<script src="sample1.js"></script>
</head>
<body>
<iframe id="sif" src="if.html"></iframe>
</body>
</html>

如何在if.html中添加文本或元素与 sample1.js

最佳答案

谢谢kingdamian42。
是的,它的工作。

sample1.js

function getFrameContents()
{
var iFrame = document.getElementById('sif');
var iFrameBody;
if ( iFrame.contentDocument )
{ // FF
iFrameBody = iFrame.contentDocument.getElementsByTagName('body')[0];
}
else if ( iFrame.contentWindow )
{ // IE
iFrameBody = iFrame.contentWindow.document.getElementsByTagName('body')[0];
}
alert(iFrameBody.innerHTML);
}

关于javascript - 用javascript更改另一个html文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25189329/

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