jQuery中:password选择器用法实例教程
程序员文章站
2023-11-08 11:02:28
本文实例讲述了jquery中:password选择器用法,分享给大家供大家参考。具体分析如下:
此选择器能够选取所有密码框。
语法结构:
代码如下:
$(":p...
本文实例讲述了jquery中:password选择器用法,分享给大家供大家参考。具体分析如下:
此选择器能够选取所有密码框。
语法结构:
代码如下:
$(":password")
实例代码:
代码如下:
<!doctype html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="https://www.cnblogs.com/" />
<title>博客园</title>
<script type="text/javascript" src="mytest/jquery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#btn").click(function(){
$(":password").css("background-color","red");
})
})
</script>
</head>
<body>
<ul>
<li>密码框:<input type="password" name="mima" /></li>
</ul>
<button id="btn">点击查看效果</button>
</body>
</html>