JQuery Mobile完整站点重定向

时间:2013-02-19 17:04:38

标签: javascript jquery-mobile redirect mobile

我正在尝试为移动网站做一些非常简单的事情:添加完整的网站重定向按钮。我的移动网站存储在m目录root / m中,而我的重定向链接则转到目录root / index.php。

实际按钮是:

<a data-role="button" data-theme="a" href="http://www.mysite.com?m=desktop" data-icon="home" data-iconpos="left">
                Full Site
</a>

然而,问题是当按下该链接时,JQuery Mobile会重新格式化index.php页面上的所有内容并添加诸如

之类的内容
<html class="ui-mobile">.

由于某些原因,我似乎无法找到其他人有任何问题。 任何人都知道如何为某些链接禁用此功能并为其他链接启用它?

感谢。

1 个答案:

答案 0 :(得分:1)

将rel =“external”属性添加到按钮中,如下所示:

<a data-role="button" data-theme="a" href="http://www.mysite.com?m=desktop" data-icon="home" data-iconpos="left" rel="external">
            Full Site
</a>

这会强制打开新网址而不将其加载到当前的DOM结构中。