标签:
在有了javascript基础后开始学习的jquery,水平很菜,但还是想把我日常学习中发现的一些之前不太理解的东西后来有了一些了解的东西写出来与大家分享,如果有不对的地方也欢迎各位大神指正。
jquery中选择器中(:button)在W3Cshcool中的解释是【选取所有 type="button" 的 <input> 元素 和 <button> 元素】
但在我的测试中,当button的type=submit的时候也一样可以选择出来。
<!DOCTYPE html>
<html>
<head>
<script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
$(this).hide();
});
});
</script>
</head>
<body>
<button type="button">按钮</button>
<button type="submit">提交</button>
</body>
</html>
标签:
原文地址:http://www.cnblogs.com/shijia-dreamhome/p/4299399.html