如何使用jQuery Mobile制作一个禁用按钮
jQuery Mobile是一种基于网络的技术,用于制作可以在所有智能手机、平板电脑和台式机上访问的响应式内容。在这篇文章中,我们将使用jQuery Mobile制作一个禁用按钮。
方法:首先,添加你的项目需要的jQuery Mobile脚本。
<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.1.min.js”></script>
<script src=”http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js”></script>
我们将使用不同类型的ui类和类型来组成标记的按钮。
示例1:在这篇文章中,我们将使用带有禁用属性的Button来禁用它。
<!DOCTYPE html>
<html>
<head>
<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.1.min.js">
</script>
<script src=
"http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js">
</script>
</head>
<body>
<center>
<h1>GeeksforGeeks</h1>
<h4>Disable buttons using jQuery Mobile</h4>
</center>
<button disabled="">Disabled button</button>
</body>
</html>
输出:
例子2:在这篇文章中,我们将使用带有class=”ui-btn ui-state-disabled “的Anchor标签来达到我们的目的。
<!DOCTYPE html>
<html>
<head>
<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.1.min.js">
</script>
<script src=
"http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js">
</script>
</head>
<body>
<center>
<h1>GeeksforGeeks</h1>
<h4>Disable Anchor using jQuery Mobile</h4>
</center>
<a href="https://www.geeksforgeeks.org/"
class="ui-btn ui-state-disabled">
Disabled anchor
</a>
</body>
</html>
输出: