📅  最后修改于: 2023-12-03 15:16:42.005000             🧑  作者: Mango
jQuery Mobile 是一个基于 HTML、CSS 和 JavaScript 的开源移动端应用开发框架,用于创建自适应和响应式的移动端界面。Button Widget 是 jQuery Mobile 的一个核心组件,用于创建各种样式和功能的按钮。
iconpos
是 Button Widget 中的一个选项,用于定义按钮上图标的位置。
<a href="#" data-role="button" data-icon="star" data-iconpos="left">Left Icon</a>
<a href="#" data-role="button" data-icon="star" data-iconpos="right">Right Icon</a>
<a href="#" data-role="button" data-icon="star" data-iconpos="top">Top Icon</a>
<a href="#" data-role="button" data-icon="star" data-iconpos="bottom">Bottom Icon</a>
left
:按钮图标位于文本左侧。right
:按钮图标位于文本右侧。top
:按钮图标位于文本上方。bottom
:按钮图标位于文本下方。iconpos
选项只能应用于带有图标的按钮。iconpos
选项时,需同时设置 data-icon
属性来指定要显示的图标。iconpos
选项可以在所有支持 jQuery Mobile 的移动设备上使用。
在 HTML 文件中引入 jQuery Mobile 库:
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.js"></script>