我有一个 JQuery 移动应用程序。我想为“标题”中使用的按钮设置样式。目前,我有以下内容:
.my-btn-hdr { text-transform:uppercase; background-color:blue; color:white; min-height:33px; width:93px; }
...
<div id="myPage" data-role="page" data-dom-cache="false">
<div data-role="header" data-position="fixed">
<a href="#" data-icon="arrow-l" data-iconpos="notext" data-direction="reverse" class="ui-btn-left jqm-back">Back</a>
<h1>MyApp</h1>
<a id="saveButton" href="#" class="ui-btn-right my-btn-hdr">Save</a>
</div>
<div data-role="content">
...
</div>
</div>
我注意到当页面被渲染时,ui-btn、ui-btn-up-a、ui-shadow 和 ui-button-corner-all css 类都被添加了。我还注意到添加了 data-corners="true"、data-shadow="true" 和 data-iconshadow="true" 属性。
如何在 jquery 移动应用程序的标题中自定义按钮的样式?