首页 > 代码库 > 2014.12.25 jQuery学习笔记

2014.12.25 jQuery学习笔记

jQuery 事件函数

jQuery 事件处理方法是 jQuery 中的核心函数。

事件处理程序指的是当 HTML 中发生某些事件时所调用的方法。术语由事件“触发”(或“激发”)经常会被使用。

通常会把 jQuery 代码放到 <head>部分的事件处理方法中:

 

<html><head><script type="text/javascript" src="http://www.mamicode.com/jquery/jquery.js"></script><script type="text/javascript">$(document).ready(function(){$("button").click(function(){$("p#hello").hide();});});</script></head><body><h2>This is a heading</h2><p id="hello">This is a paragraph.</p><p>This is another paragraph.</p><button type="button">Click me</button></body></html> 

  

2014.12.25 jQuery学习笔记