鼠標事件界面轉換 mouseover() 方法
mouseover() 方法
<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("p").mouseover(function(){
$("p").css("background-color","yellow");
});
$("p").mouseout(function(){
$("p").css("background-color","#E9E9E4");
});
});
</script>
</head>
<body>
<p style="background-color:#E9E9E4">請把鼠標指針移動到這個段落上。</p>
</body>
</html>
jQuery 效果 - 隱藏和顯示
<!DOCTYPE html>
<html>
<head>
<script src="/jquery/jquery-1.11.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#hide").click(function(){
$("p").hide();
});
$("#show").click(function(){
$("p").show();
});
});
</script>
</head>
<body>
<p id="p1">如果點擊“隱藏”按鈕,我就會消失。</p>
<button id="hide" type="button">隱藏</button>
<button id="show" type="button">顯示</button>
</body>
</html>
兩個結合之後的代碼
$(function() {
$("#tzgg1").addClass(‘title_h2‘);//設置其中一個初始時的效果
});
$(document).ready(function() {
$("#tzgg1").mouseover(function() {
$("#tzgg1").addClass(‘title_h2‘);
$("#gzdt1").removeClass(‘title_h2‘);
$("#tzgg2").show();
$("#gzdt2").hide();
$("#tzgg3").show();
$("#gzdt3").hide();
});
$("#gzdt1").mouseover(function() {
$("#gzdt1").addClass(‘title_h2‘);
$("#tzgg1").removeClass(‘title_h2‘);
$("#gzdt2").show();
$("#tzgg2").hide();
$("#gzdt3").show();
$("#tzgg3").hide();
});
});
本文出自 “砥身礪行” 博客,請務必保留此出處http://82711020.blog.51cto.com/12993840/1966464
鼠標事件界面轉換 mouseover() 方法