首页 > 代码库 > JQuery 事件及运用

JQuery 事件及运用

//ready()  onLoad() 加载完成时执行

$(document).ready(function(){程序员的代码});//DOM结构加载后就触发

$(document).onLoad(function(){程序员的代码});//页面全部元素加载成功后才触发

一般简写为$(function(){程序员的代码});

 

//bind()方法绑定事件

$("#btn").bind("click mouseout",function()

{

  $(this).attr("disabled":"true");

}); //为id为btn的按钮绑定了click 和mouseout事件 当鼠标点击或移出是按钮将不可用   绑定多个事件用空格隔开

 

//hover切换事件

$("div").hover(function(){$(this).attr("color","red");},function(){$(this).removeattr("color");});

JQuery 事件及运用