📅  最后修改于: 2023-12-03 15:38:03.627000             🧑  作者: Mango
jQuery Mobile 提供了一种简单的方法来制作主题化的复选框,让你的 web 应用看起来更现代化、更易于交互。
首先,在需要使用 jQuery Mobile 的页面中,需要加载 jQuery 和 jQuery Mobile 库。
<head>
<title>My jQuery Mobile App</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
在 HTML 中创建一个标准的复选框,但是需要添加一些额外的属性。
<label for="checkbox1">Check me:</label>
<input type="checkbox" name="checkbox1" id="checkbox1" data-role="flipswitch">
这里,data-role="flipswitch"
是一个 jQuery Mobile 特有的属性,用来告诉 jQuery Mobile,我们想要把这个复选框添加为一个 flipswitch 组件。
使用 data-theme
属性来为 flipswitch 组件指定一个 jQuery Mobile 主题。
<label for="checkbox1">Check me:</label>
<input type="checkbox" name="checkbox1" id="checkbox1" data-role="flipswitch" data-theme="b">
上面的例子中,我们设置了 flipswitch 组件的主题为 "b",这是 jQuery Mobile 预定义的一种主题。
<!DOCTYPE html>
<html>
<head>
<title>My jQuery Mobile App</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>My page</h1>
</div><!-- /header -->
<div data-role="content">
<label for="checkbox1">Check me:</label>
<input type="checkbox" name="checkbox1" id="checkbox1" data-role="flipswitch" data-theme="b">
</div><!-- /content -->
<div data-role="footer">
<h4>Footer</h4>
</div><!-- /footer -->
</div><!-- /page -->
</body>
</html>
使用 jQuery Mobile 制作主题化的复选框非常简单,只需要添加一些属性,就能让 web 应用看起来更加现代化、专业化。