开发者

Jquery tabs - external page in tab (example google)

Is it possible to load an external page in a jquery tab ? I try this but don't work :

<li><a href="http://google.fr"><span>Google</span>开发者_运维百科</a></li>

Thanks a lot for your help...

Regards


Using Jquery tab, its always create a div where your result display. You have only way to open external link on your page using .

<li><a href=ReturnIfram()><span>Google</span></a></li>

href get a string which contain ifram like

public string ReturnIfram()
{
   return "<iframe src="http://google.fr"></iframe>"
}


You could use an IFrame to display an external Website. Example:

<li><iframe src="http://google.fr"></iframe></li> 
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜