如何防止在JQueryMobile中从页脚添加到锚点的样式?

时间:2013-11-23 23:32:01

标签: jquery css jquery-mobile

我有这个HTML代码:

<div data-role="footer" data-position="fixed">
    <a id="info">About - Settings</a>
</div>

JqueryMobile会将“a”设置为按钮,因为它位于页脚内部:

enter image description here

这是框架添加的CSS:

<a id="page/idinfo" class="ui-link ui-btn ui-shadow ui-corner-all" data-role="button" role="button">About</a>

如何阻止该按钮的样式?

这就是我需要的:

enter image description here

我知道我可以尝试一些javascript来从锚中删除类,但也许JQueryMobile有一些东西可以防止这种样式。

提前致谢!

1 个答案:

答案 0 :(得分:4)

尝试添加dara-role =&#34; none&#34;:

<div data-role="footer" data-position="fixed" >
    <span data-role="none"> <a id="info">About - Settings</a></span>
</div>

在jQM 1.4中,data-role =&#34; none&#34;似乎需要在容器上,在1.3中你可以直接将它应用到锚标签。