jQuery 事件
jQuery是为事件处理特别设计的
jQuery处理方法是jQuery中的核心函数
jQuery函数一般放在<head>部分的事件处理方法中
举例:当按钮被点击时会触发一个jQuery函数,隐藏P标签里的内容,请看代码。这就是一个事件函数
<html> <head> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("button").click(function(){ $("p").hide(); }); }); </script> </head> <body> <h2>This is a heading</h2> <p>This is a paragraph.</p> <p>This is another paragraph.</p> <button>Click me</button> </body> </html>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。