📅  最后修改于: 2023-12-03 14:51:56.849000             🧑  作者: Mango
jQuery Mobile 是一个基于 jQuery 的移动应用框架,它提供了许多易于使用的 UI 控件和功能,其中包括时间输入。
在 HTML 文件中引入 jQuery 和 jQuery Mobile 库文件。可以使用 CDN 或本地文件引入。
<!-- 引入 jQuery 文件 -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<!-- 引入 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" />
<!-- 引入 jQuery Mobile 库文件 -->
<script src="https://code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.js"></script>
使用 <input>
元素创建时间输入。将 type
属性设置为 "time"。
<label for="time">选择时间:</label>
<input type="time" name="time" id="time">
可以看到,此时页面已经出现了一个时间输入框,我们可以使用它来选择时间了。
<!DOCTYPE html>
<html>
<head>
<title>时间输入示例</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<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.5.1.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>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>时间输入示例</h1>
</div>
<div data-role="content">
<label for="time">选择时间:</label>
<input type="time" name="time" id="time">
</div>
</div>
</body>
</html>
以上就是使用 jQuery Mobile 创建时间输入的步骤,可以看到非常简单。通过使用 jQuery Mobile,我们可以轻松地在移动应用中创建各种交互和 UI 控件,加快开发效率。