我正在尝试更改 iframe 中文本框的值。我已经尝试过以各种我能找到的方式使用 GetElementById,但似乎没有任何效果。
我通过使用 Object 数据标签找到了 iframe 的替代方案,但它也有同样的问题。
我的代码或多或少,为了演示而对其进行了一些更改:
<html>
<head>
<title>None</title>
</head>
<body>
<script type="text/javascript">
function changeValue() {
var textBox = document.getElementById('userName');
textBox = "hello!";
}
</script>
<iframe id="myFrame" src="http://www.website.com"></iframe>
<input type="button" onclick="changeValue()" value="Submit">
</body>
</html>