2013-09-25 69 views
0

iframe中的鏈接,我用我的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> 

任何人都可以建議我任何解決方案嗎?

+0

嘗試parent.window.open( 「backbuttonnewpage.html」, 'TheNewpop','工具欄= 1, 位置= 1,目錄= 1,狀態= 1 ,menubar = 1, scrollbars = 1,resizable = 1'); – lv0gun9

+0

@ Iv0gun9它不工作的任何其他替代 – puneetjava

+0

檢查[這裏] [1]的解決方案,希望它有助於 [1]:http://stackoverflow.com/questions/4583792/make-links-inside- AN-iframe的開放式-A-新窗口 –

回答

0

我想你只是想在新標籤頁中打開一個新頁面。如果是這樣,這裏是你需要的代碼:

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