JQuery Mobile跳过特定元素

sum*_*ife 2 jquery jquery-mobile

有没有办法告诉jquery mobile跳过特定元素?

我有一个自定义div看起来像:

<div class="fr-confRoomInfo">
<a href="#" class="fr-confRoomBtn blue ui-link">
<span>Some text</span></a>
</div>
Run Code Online (Sandbox Code Playgroud)

我不想将ui-link应用于该特定div中的标记.有没有办法做到这一点?

编辑 我最终在jquery mobile下面移动我的自定义css链接,所以我可以覆盖我需要更改的css参数.所以在我的CSS中我最终做到了这一点:

.fr-confRoomInfo
{
    text-shadow: none;
}
Run Code Online (Sandbox Code Playgroud)

摆脱了实际从ui-body-c继承的文本阴影(不是ui-link)

Cul*_*SUN 8

data-role ="none"是告诉jQuery Mobile忽略你的标签的正确方法