以下是使用jQuery Mobile设置图标和它在按钮中的位置的完整攻略:
- 首先,在HTML文件中引入jQuery Mobile库。可以以下代码实现:
<head>
<meta="viewport" content="width=device-width, initial-scale=1">
<title>jQuery Mobile</title>
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="https://code.jquery.com/jquery-111.3.min.js"></script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
- 接下来,在HTML中添加按钮元素。可以以下代码实现:
<a href="#" data-role="button" data-icon="star">Button</a>
在这个代码中,我们使用了<a>
元素来定义按钮,data-role="button"
属性用于定义按钮的角色,data-icon="star"
属性用于定义按钮的图标。
- 最后需要在JavaScript中添加代码以正确显示按钮。可以以下代码实现:
$(document).on('pageinit', function() {
$('a[data-role="button"]').button();
});
这样,就可以成功使用jQuery Mobile设置图标和它在按钮中的位置了。
以下是两个示例:
- 示例1:使用jQuery Mobile设置图标在按钮左侧
<a href="#" data-role="button" data-icon="star" data-iconpos="left">Button</a>
在这个示例中,我们设置了图标在按钮左侧。data-iconpos="left"
属性用于定义图标的位置。
在JavaScript中,我们使用了$('a[data-role="button"]').button()
来初始化按钮。
- 示例2:使用jQuery Mobile设置图标在按钮右侧
<a href="#" data-role="button" data-icon="star" data-iconpos="right">Button</a>
在这个示例中,我们设置了图标在按钮右侧。data-iconpos="right"
属性用于定义图标的位置。
在JavaScript中,我们使用了$('a[data-role="button"]').button()
来初始化按钮。