我正在尝试在 jQuery Mobile 的列表视图中设置已读/未读消息的样式集。
<ul data-role="listview" data-theme="c" id="#messageList" style="padding-top:10%;">
<li data-icon="false">
<a href="#" onclick="messageClick()">
<p>
<span style="float:left;clear:left;font-weight: bold;text-decoration:underline;color:blue;white-space:pre-wrap; width:30ex">Some unread text</span>
<span style="float:right;font-weight: bold;">08/02/13</span>
</p>
</a>
</li>
.....
</ul>
我的内心messageClick()
:
function messageClick(){
$(this).findclosest("span").css("font-weight","normal");
}
但这似乎不起作用。我哪里错了?