html 如何在新标签页或窗口中打开iframe链接

w46czmvw  于 2022-12-16  发布在  其他
关注(0)|答案(1)|浏览(287)

我在我的html页面中使用了一些iframe标记,如下所示:

<TABLE border="0" width="900">
    <tr valign="top">
    <td width="300" ALIGN=center>
                  <iframe src='http://www.apple.com/in/'  frameborder = 0, height=250, width = 300  > </iframe><br>

    </div>
       </td>

    <td width="300" ALIGN=center>
            <div class="item_list">
            <iframe src = 'http://www.flipkart.com/affiliate/displayWidget?affrid=WRID-137232779171598318'  frameborder = 0, height=250, width = 300 base target="_blank"  > </iframe></a><br>
            </div>
      </td>
      <td width="300" ALIGN=center>
            <div class="item_list">
            <iframe src = 'http://www.flipkart.com/affiliate/displayWidget?affrid=WRID-  137232785207215857' frameborder = 0, height=250, width = 300 > </iframe>
      <br></div>
    </td>
    </tr>
     </TABLE>

现在我所需要的,是打开在iframe里面的链接到新的标签页或窗口。我已经使用了下面的脚本关于这一点,但没有运气。

<SCRIPT LANGUAGE="JavaScript">

   function goNewWin() {

    //***Get what is below onto one line***

    window.open("backbuttonnewpage.html",'TheNewpop','toolbar=1,
   location=1,directories=1,status=1,menubar=1,
    scrollbars=1,resizable=1'); 

   //***Get what is above onto one line*** 

   self.close()

      }

   </SCRIPT>

谁能给我建议解决这个问题的办法?

beq87vna

beq87vna1#

我认为您试图在新标签页中打开一个新页面。如果是这样,下面是您需要的代码:

<a href="WebAdress.netdom" target="_blank"><button>Open New Tab</button></a>

相关问题