亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

东乌珠穆沁旗| 佛山市| 西畴县| 汶川县| 大同县| 恩施市| 华池县| 综艺| 垫江县| 霍山县| 辉县市| 新野县| 承德县| 天全县| 无锡市| 大关县| 南汇区| 玉树县| 同江市| 永定县| 怀柔区| 湖南省| 禄丰县| 靖远县| 佛冈县| 兴宁市| 大渡口区| 扬州市| 惠安县| 龙南县| 牡丹江市| 博兴县| 鹤岗市| 海林市| 读书| 儋州市| 彭泽县| 侯马市| 景洪市| 合肥市| 伊宁县|