0

*我试图在同一个 Iframe 中打开多个链接,以及更改 divsstyle.visibility(Visibility 对我有用)但添加 window.open 我什么也没得到。我在 div 中有原始地址 id="testing" name="wordp" *

<head>
    <script type="text/javascript">
                function wordpaboutme() {
                   var showme2 = document.getElementById("testing");
                    showme2.style.visibility = "visible";

                    var changeme = document.getElementById("testing");
                    changeme.window.open.('http://mysite.com/main/about-me/','wordp');  

                }
            </script>

<body>
    <div id="testing" name="wordp" class="bloger" ><iframe src="http://mysite.com/main/" frameborder="0" scrolling="no" width="990" height="800"  >
      <p>Your browser does not support iframes.</p> 
    </iframe>
    </div>
4

1 回答 1

2

window.open打开一个弹出窗口。它不会改变iframe. 要在 中打开不同的页面iframe,请考虑将srciframe 的 " " 属性更改为JQuery

此外,正如 Collin Grady 在评论中提到的那样,在链接的“目标”属性中指定 iframe id 来完成这项工作是一种更简单的方法。

于 2013-09-15T00:35:50.430 回答