2013-01-10 243 views
-1

我需要關於jQuery選項卡的幫助。jQuery選項卡 - 使用URL內容填充選項卡面板

我有如下,打印標籤

<html> 
    <head> 
     <title>jQuery UI URL Tabs</title> 

     <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" /> 
     <script src="http://code.jquery.com/jquery-1.8.3.js"></script> 
     <script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script> 
    </head> 
    <script> 
     $(function() { 
      $("#myTabs").tabs(); 
     }); 
    </script> 
    <body> 
     <div id="myTabs"> 
      <ul> 
       <li><a href="#t1">Page 1</a></li> 
       <li><a href="#t2">Page 2</a></li> 
      </ul> 
      <div id="t1"></div> 
      <div id="t2"></div> 
     </div> 
    </body> 
</html> 

我想與URL動態加載標籤頁的內容,例如 T1 = http://www.google.co.in T2碼= http://www.yahoo.com

任何人可以請幫助?

謝謝。

回答

0

您無法將整個頁面加載到Jquery選項卡中。您可以使用Ajax加載簡單的HTML或內容。

嘗試將Iframe插入到Jquery選項卡中,然後將url加載到Tab中。

+0

我對iFrame的使用相同。它爲我工作。 –

1

你並沒有真的試圖自己解決這個問題,是嗎?請查看jQuery文檔並查找$ .load()或$ .ajax()

相關問題