我需要从 iframe 运行 JavaScript 函数(在 HTML 页面中),我按照在网上找到的说明进行操作,但无法使其工作。有任何想法吗?
这是代码:
<html>
<head>
<script type="text/javascript">
function testFunction()
{
var jsmessage = "Test succeed.";
alert(jsmessage);
return false;
}
</script>
</head>
<body>
<iframe id="myframe" src="iframe.html" height="260" width="620" frameborder="0"></iframe>
</body>
</html>
这是 iframe.html 代码:
<html>
<body>
<input type="button" onclick="parent.testFunction();" value="Test function">
</body>
</html>