<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">
</script>
<script>
$.extend({
hello:function (){alert('hello');}
});
$.fn.extend({
aa:function(){alert('aa');}
});
jQuery.fn.bb=function () {
alert('bb');
}
$(document).ready(function(){
$("p").click(function(){
$(this).hide();
$.hello();
$(this).aa();
$("p").bb();
});
});
</script>
</head>
<body>
<p>如果您点击我,我会消失。</p>
<p id=ww>点击我,我会消失。</p>
<p>也要点击我哦。</p>
</body>
</html>
jquery自定义函数
最新推荐文章于 2023-02-01 15:35:07 发布
本文介绍了一个简单的HTML页面中如何利用jQuery库进行DOM元素的操作,包括显示警告消息、隐藏元素等基本功能。通过实例演示了如何为页面上的段落元素添加点击事件,当点击这些元素时,将触发相应的jQuery方法实现特定的行为。
摘要由CSDN通过智能技术生成