📅  最后修改于: 2023-12-03 14:51:57.196000             🧑  作者: Mango
在 jQuery Mobile 中,可以使用内联按钮来创建一个按钮,使其在行内显示,并且与其他内容垂直对齐。内联按钮适合在段落或其他文本内容中嵌入。
下面是使用 jQuery Mobile 制作内联按钮的步骤:
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<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/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.js"></script>
data-inline="true"
属性来将按钮设置为内联按钮。例如:<a href="#" data-role="button" data-inline="true">内联按钮</a>
完整的代码示例如下:
<!DOCTYPE html>
<html>
<head>
<title>内联按钮示例</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<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/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.js"></script>
</head>
<body>
<p>这是一个内联按钮的示例:</p>
<a href="#" data-role="button" data-inline="true">内联按钮</a>
</body>
</html>
运行以上代码,就可以在页面上看到一个内联按钮的效果。
希望这个介绍能帮助你了解如何使用 jQuery Mobile 制作内联按钮。