1

我正在使用 jQuery mobile 开发移动网站问题是链接在 Internet Explorer 移动中不起作用

<a rel="external" href="http://www.external-site.com" title="" class="ui-link" style="text-decoration: none; ">

这就是我尝试过的链接的外观:

<a data-role="none" href="http://www.external-site.com" title="" class="ui-link" style="text-decoration: none; ">

我想知道到外部域的链接应该如何在 Windows 移动 Internet Explorer 中工作

4

1 回答 1

0

尝试像这样链接页面:

<a data-role="none" href="http://www.google.com" class="ui-link" rel="external"  style="text-decoration: none; ">Multi-page link</a>

在 jQuery 移动文档中有一个关于链接页面的章节。你读过那些吗?
http://jquerymobile.com/demos/1.0a4.1/docs/pages/link-formats.html

http://jquerymobile.com/test/docs/pages/page-links.html

基于这个问题: jquery Mobile urls add # tag which breaks forms in Internet Explorer
Setting data-ajax="false" 应该会有所帮助。

于 2012-09-10T09:38:02.913 回答