Navbar with hash link(jQuery mobile)

时间:2013-04-10 12:32:02

标签: jquery jquery-mobile

如何使用与没有哈希的链接相同的哈希添加使用链接? (例如:mySubpage * #test *)。

我仍然想使用jQuery mobile feautres for naviagion,只是对链接有一个哈希值!

示例(HTML)

<div data-role="navbar" data-grid="d">
    <ul>
        <li><a href="http://orf.at">Google</a>
        </li>
        <li><a href="http://google.com#test">Google with hash (not working)</a>
        </li>
    </ul>
</div>

Fidldler

1 个答案:

答案 0 :(得分:2)

像这样添加:

 <li><a href="http://google.com#test" rel="external">Google with hash (not working)</a>

基本上您需要添加 rel =“external”属性。这是jQuery Mobile打开此链接作为外部页面的标志。

官方文档: Linking pages