jquery簡單事件舉例

來源:互聯網
上載者:User

標籤:選中   utf-8   blog   span   oat   舉例   seo   phpstudy   htm   

jquery事件相對於js來說要簡單一些,尤其是代碼的數量明顯更簡略,下面是jquery事件的兩個例子,一個是全選事件,一個是導覽列的滑鼠移上移除事件:

一、全選事件:

<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><script src="../../../phpstudy/WWW/jquery-3.2.0.min.js"></script><title>無標題文檔</title></head><body><h1>全選效果</h1><div><input type="checkbox" value="qx" id="qx" /> 全選</div><br /><div><input type="checkbox" value="1" class="ck" /> 路飛<input type="checkbox" value="1" class="ck" /> 索隆<input type="checkbox" value="1" class="ck" /> 山治<input type="checkbox" value="1" class="ck" /> 娜美<input type="checkbox" value="1" class="ck" /> 烏索普<input type="checkbox" value="1" class="ck" /> 弗蘭奇</div></body><script type="text/javascript">$("#qx").click(function(){                //找到全選按鈕的選中狀態        //var xz = $(this)[0].checked;        var xz = $(this).prop("checked");                //改變所有的checkbox選中狀態        $(".ck").prop("checked",xz);            })</script></html>

二、導覽列的滑鼠移上移除事件

<style>.a{    width:50px;    height:20px;    float:left;    margin:10px;    }</style><script src="jquery-3.2.0.min.js"></script></head><body><div class="a">首頁</div><div class="a">史記</div><div class="a">漢書</div><div class="a">後漢書</div><div class="a">三國志</div></body><script>$(".a").mouseover(function(){    $(this).css("background-color","#666")//點擊後變為灰色})$(".a").mouseout(function(){    $(this).css("background-color","#FFF")//移除後變為白色})    </script></html>

 

jquery簡單事件舉例

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.