📅  最后修改于: 2023-12-03 15:38:03.535000             🧑  作者: Mango
jQuery Mobile 是一个基于 HTML5 的用户界面框架,用于创建响应式,可访问和流畅的移动应用程序和网站。本文将介绍如何使用 jQuery Mobile 创建禁用 Fieldcontain 翻转切换开关。
<!DOCTYPE html>
<html>
<head>
<title>jQuery Mobile Switch Widget Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<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-1.11.3.min.js"></script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
...
</body>
</html>
<div data-role="fieldcontain">
<label for="flip-1">Switch:</label>
<select name="flip-1" id="flip-1" data-role="slider" disabled="true">
<option value="off">Off</option>
<option value="on">On</option>
</select>
</div>
$(document).on('pagebeforeshow', '#pageid', function(){
$('#flip-1').slider("disable");
});
这样就完成了如何使用 jQuery Mobile 创建禁用 Fieldcontain 翻转切换开关的介绍。通过本文,希望您了解了 jQuery Mobile 的基本使用方法,并能够熟练掌握创建禁用 Fieldcontain 翻转切换开关的技巧。