码迷,mamicode.com
首页 > 其他好文 > 详细

jqyery学籍资料总结

时间:2015-02-06 14:50:50      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:

元素选择器
$(document).ready(function(){
	$("button").click(function(){
		$("h2").hide();
		})
})

id选择器,class选择器,所有选择器,当前对象this,子类选择器 首个元素 超链接隐藏,按钮

$("#click1").hide();
$(this).hide();
  $("ul li:first").hide();
 $("ul li:first-child").hide();
 $("[href]").hide();
    $(":button").hide()

设置样式:
 $("tr:odd").css("background-color","yellow");



---------------------------------
jquery  事件 

click dblclick mouseenter mouseleave scroll keypress keydown keyup submit change focus blur 

load resize scroll unload 
当前对象点击消失
$("p").click(function(){
    $(this).hide();

滑动事件:
$(document).ready(function(){
  $("#p1").mouseenter(function(){
  $("p").css("color","red");
  });
  $("#p1").mouseout(function(){
 
  $("p").css("color","blue");
  });
});

  

jqyery学籍资料总结

标签:

原文地址:http://www.cnblogs.com/wwxblog/p/4277027.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!