jquery :reset选择器入门教程

发布时间:2020-12-18编辑:脚本学堂
有关jquery :reset选择器的用法,包括:reset选择器的语法结构、:reset选择器的例子,感兴趣的朋友参考下。

jquery-xuanzeqi/ target=_blank class=infotextkey>jquery选择器之:reset选择器用法

此选择器能够选取所有重置按钮。

语法结构:
 

$(":reset")

例子:
 

复制代码 代码示例:
<!doctype html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.plcxue.com/" />
<title>plc学堂</title>
<script type="text/javascript" src="mytest/jquery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$(":reset").css("background-color","red");
});
});
</script>
</head>
<body>
<ul>
<li>
密码框:<input type="password" name="mima" />
重置按钮:<input type="reset" value="重置" />
</li>
</ul>
<button>点击查看效果</button>
</body>
</html>