嗨,我在弹出窗口中有iframe标签。 在iframe上加载另一个页面。 如果在代码下方使用,则无法加载spurce页面。
enter code here<iframe id="Iframe1" width="802" height="500">
<script type="text/javascript">
$(function () {
document.getElementById("testframe").src = "SelectMembers.aspx";
});
</script>
</iframe>
或
如果在代码下方使用,则会出现此错误。 '__pendingCallbacks [...] .async'为null或不是对象:callback async [i] ... FIX:)
答案 0 :(得分:1)
试试这个:
<script type="text/javascript">
$(function () {
document.getElementById("Iframe1").src = "/SelectMembers.aspx";
});
</script>
<iframe id="Iframe1" width="802" height="500">
</iframe>
答案 1 :(得分:0)
不要放置javascript between
iframe标记。在head
正文标记之前的closing
中添加javascript。另外,请确保您在当前页面的同一文件夹中有SelectMembers.aspx。
HTML 的
<iframe id="Iframe1" width="802" height="500"> </iframe>
Javacript在关闭身份标签
之前<script type="text/javascript">
$(function () {
document.getElementById("testframe").src = "SelectMembers.aspx";
});
</script>
</body>