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

切换事件

时间:2016-05-16 14:13:20      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:

HTML:
<!DOCTYPE >

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<style type="text/css">
* {
margin: 0px;
padding: 0;
font-family: "微软雅黑", "arial", " sans-serif";
font-size: 16px;
}

body {
margin: 20px;
}
</style>
<script type="text/javascript" src="js/jquery-2.2.2.min.js">
</script>

<script type="text/javascript">
$(function () {
$("h2").hover(
function () {
$("#content").show(1);
},
function () {
$("#content").hide(1);
}
)
});
</script>
</head>

<body>
<div id="container">
<h2 style="margin: 0px;width: 166px;height: 25px;border: 1px silver solid;">关于hover方法的作用</h2>

<div id="content" style="width: 300px;height: 150px;border: 1px solid red;padding: 10px;display: none;">
hover方法:当鼠标移动到元素上或者是移出元素时执行事件处理代码,hover方法实际上是对mouseenter和mouseleave事件的合并,用来模仿一种鼠标悬停的效果
</div>
</div>

</body>

</html>

result:
技术分享

运行:
技术分享

切换事件

标签:

原文地址:http://www.cnblogs.com/theWayToAce/p/5497800.html

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