jquery事件
代码展示
<head>
<script src="http://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(function(){
$("p").click(function(){
$(this).hide();
});
});
</script>
</head>
<p> I am a good man</p>
学习感悟
- 第一个“script”标签内是jquery库的来源。
- 上述隐藏动作包含一个嵌套函数。
- 感觉this属于设计冗余,就这样吧
疑惑
上述$(this)中this是选择器么?