码迷,mamicode.com
首页 > Web开发 > 详细

jQuery的hover()方法(笔记)

时间:2014-12-22 15:58:17      阅读:462      评论:0      收藏:0      [点我收藏+]

标签:

 

 

因为mouseover和mouseout经常一起写,所以出现了hover()

hover(function(){},function(){});第一个参数为鼠标移入运行的函数,第二个为鼠标离开运行的函数

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Document</title>
<style type="text/css">
#demo{width:200px; height:300px;background-color: green;}

</style>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(function() {
// $("#demo").mouseover(function(){
// $(this).css({"width":"400px","height":"600px","background-color":"yellow"});
// });
// $("#demo").mouseout(function(){
// $(this).css({"width":"200px","height":"300px","background-color":"green"});
// });
$("#demo").hover(function() {
$(this).css({"width":"400px","height":"600px","background-color":"yellow"});
}, function() {
$(this).css({"width":"200px","height":"300px","background-color":"green"});
});
});

</script>
</head>
<body>
<div id="demo"></div>

</body>
</html>

jQuery的hover()方法(笔记)

标签:

原文地址:http://www.cnblogs.com/SmallNiu/p/4178331.html

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