91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

jquery 合成事件

發布時間:2020-07-09 00:54:04 來源:網絡 閱讀:240 作者:小浩51 欄目:web開發

1:hover() 用于模擬光標懸停事件,hover(enter,leave),當光標移動到元素上時會觸發第一個函數enter,當光標移除元素時觸發第二個函數enter。

<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript" src="/TestJquery/jq/jquery-1.3.2.js"></script>
<title>Insert title here</title>
<style type="text/css">
.head{
    color:red;
    font-size:30px;
    font-weight:bold;
    background-color: yellow;
}
.content{
    display: none;
}
</style>
</head>
<body>
<div id="panel">
    <h6 class="head">什么事Jquery</h6>
    <div class="content">
        jaueryshi是一個優秀的javascript庫.....
    </div>
</div>
</body>
<script type="text/javascript">
$(function(){
    $("#panel h6.head").hover(function(){
        $(this).next("div.content").show();
    },function(){
        $(this).next("div.content").hide();
    });
});
</script>
</html>
*(以上的hover函數寫法其實等價于鼠標獲取焦點和取消焦點事件,如果想把這種效果改成鼠標點擊展現的話把mouseover和mouseout事件換成click就OK了。)
$(function(){
    $("#panel h6.head").bind("mouseover",function(){
        $(this).next("div.content").show();
    });
$("#panel h6.head").bind("mouseout",function(){
        $(this).next("div.content").hide();
    });
});
2:toggle() 用于模擬鼠標連續單擊事件。toggle(f1,f2,.....),第一次單擊時觸發第一個函數f1,第二次單擊時觸發第二個函數f2以此類推直到最后一個。隨后的每次單擊事件循環這一過程。  
$(function(){
    $("#panel h6.head").toggle(function(){
        $(this).next("div.content").show();
    },function(){
        $(this).next("div.content").hide();
    });
});
*(toggle()還有另外一個作用就是切換元素的可見狀態。上面的代碼等同于)
$(function(){
    $("#panel h6.head").toggle(function(){
        $(this).next("div.content").toggle();
    },function(){
        $(this).next("div.content").toggle();
    });
});


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宜章县| 乌拉特中旗| 封开县| 舒城县| 贵定县| 靖西县| 兴宁市| 宣城市| 文化| 江达县| 上蔡县| 潍坊市| 交口县| 漳浦县| 手游| 德令哈市| 西畴县| 瑞安市| 汉中市| 涟水县| 甘孜县| 阿鲁科尔沁旗| 乐东| 吉首市| 鲜城| 马鞍山市| 长武县| 漾濞| 台中县| 临猗县| 辽中县| 宣武区| 额敏县| 麦盖提县| 莎车县| 怀安县| 阿拉尔市| 册亨县| 丰城市| 丰镇市| 贵南县|