知識預覽:javascript
參考資料:jQyery中文文檔
css
回到頂部html
jQuery 對象就是經過jQuery包裝DOM對象後產生的對象。jQuery 對象是 jQuery 獨有的. 若是一個對象是 jQuery 對象, 那麼它就可使用 jQuery 裏的方法: $(「#test」).html();$("#test").html() java
意思是指:獲取ID爲test的元素內的html代碼。其中html()是jQuery裏的方法
這段代碼等同於用DOM實現代碼: document.getElementById(" test ").innerHTML;
雖然jQuery對象是包裝DOM對象後產生的,可是jQuery沒法使用DOM對象的任何方法,同理DOM對象也不能使用jQuery裏的方法.亂使用會報錯
約定:若是獲取的是 jQuery 對象, 那麼要在變量前面加上$.
var $variable = jQuery 對象
var variable = DOM 對象
$variable[0]:jquery對象轉爲dom對象 $("#msg").html(); $("#msg")[0].innerHTML
$(obj):dom對象轉爲jquery對象
jquery的基礎語法:$(selector).action() python
參考:http://jquery.cuishifeng.cn/jquery
回到頂部web
$("*") $("#id") $(".class") $("element") $(".class,p,div")
$(".outer div") $(".outer>div") $(".outer+div") $(".outer~div")
$("li:first") li標籤第一個 $("li:eq(2)") li標籤經過索引、索引由0開始 $("li:even") $("li:gt(1)") li標籤中大於索引爲1的
$('[id="div1"]') $('["alex="sb"][id]')
$("[type='text']")----->$(":text") 注意只適用於input標籤 : $("input:checked")
:enabled :disabled :checked :selected
<body> <form> <input type="checkbox" value="123" checked> <input type="checkbox" value="456" checked> <select> <option value="1">Flowers</option> <option value="2" selected="selected">Gardens</option> <option value="3" selected="selected">Trees</option> <option value="3" selected="selected">Trees</option> </select> </form> <script src="jquery.min.js"></script> <script> // console.log($("input:checked").length); // 2 // console.log($("option:selected").length); // 只能默認選中一個,因此只能lenth:1 $("input:checked").each(function(){ console.log($(this).val()) }) </script> </body>
$("li").eq(2) $("li").first() $("ul li").hasclass("test") 判斷是否標籤 中class 屬性是否包含「test」,若是有返回true
查找子標籤: $("div").children(".test") $("div").find(".test") 向下查找兄弟標籤: $(".test").next() $(".test").nextAll() $(".test").nextUntil() 向上查找兄弟標籤: $("div").prev() $("div").prevAll() $("div").prevUntil() 查找全部兄弟標籤: $("div").siblings() 查找父標籤: $(".test").parent() $(".test").parents() $(".test").parentUntil()
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>left_menu</title> <script src="js/jquery-2.2.3.js"></script> <script> function show(self){ // console.log($(self).text()) $(self).next().removeClass("hide") $(self).parent().siblings().children(".con").addClass("hide") } </script> <style> .menu{ height: 500px; width: 30%; background-color: gainsboro; float: left; } .content{ height: 500px; width: 70%; background-color: rebeccapurple; float: left; } .title{ line-height: 50px; background-color: #425a66; color: forestgreen;} .hide{ display: none; } </style> </head> <body> <div class="outer"> <div class="menu"> <div class="item"> <div class="title" onclick="show(this);">菜單一</div> <div class="con"> <div>111</div> <div>111</div> <div>111</div> </div> </div> <div class="item"> <div class="title" onclick="show(this);">菜單二</div> <div class="con hide"> <div>111</div> <div>111</div> <div>111</div> </div> </div> <div class="item"> <div class="title" onclick="show(this);">菜單三</div> <div class="con hide"> <div>111</div> <div>111</div> <div>111</div> </div> </div> </div> <div class="content"></div> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>tab</title> <script src="js/jquery-2.2.3.js"></script> <script> function tab(self){ var index=$(self).attr("xxx") $("#"+index).removeClass("hide").siblings().addClass("hide") $(self).addClass("current").siblings().removeClass("current") } </script> <style> *{ margin: 0px; padding: 0px; } .tab_outer{ margin: 0px auto; width: 60%; } .menu{ background-color: #cccccc; /*border: 1px solid red;*/ line-height: 40px; } .menu li{ display: inline-block; } .menu a{ border-right: 1px solid red; padding: 11px; } .content{ background-color: tan; border: 1px solid green; height: 300px; } .hide{ display: none; } .current{ background-color: darkgray; color: yellow; border-top: solid 2px rebeccapurple; } </style> </head> <body> <div class="tab_outer"> <ul class="menu"> <li xxx="c1" class="current" onclick="tab(this);">菜單一</li> <li xxx="c2" onclick="tab(this);">菜單二</li> <li xxx="c3" onclick="tab(this);">菜單三</li> </ul> <div class="content"> <div id="c1">內容一</div> <div id="c2" class="hide">內容二</div> <div id="c3" class="hide">內容三</div> </div> </div> </body> </html>
回到頂部數組
1
2
|
ready(fn)
// 當DOM載入就緒能夠查詢及操縱時綁定一個要執行的函數。
$(document).ready(
function
(){}) -----------> $(
function
(){})
|
//語法: 標籤對象.事件(函數) eg: $("p").click(function(){})
$("").on(eve,[selector],[data],fn) // 在選擇元素上綁定一個或多個事件的事件處理函數。
<ul> <li>1</li> <li>2</li> <li>3</li> </ul> <hr> <button id="add_li">Add_li</button> <button id="off">off</button> <script src="jquery.min.js"></script> <script> $("ul li").click(function(){ alert(123) }); $("#add_li").click(function(){ var $ele=$("<li>"); $ele.text(Math.round(Math.random()*10)); $("ul").append($ele) }); // $("ul").on("click","li",function(){ // alert(456) // }) $("#off").click(function(){ $("ul li").off() }) </script>
hover事件:瀏覽器
一個模仿懸停事件(鼠標移動到一個對象上面及移出這個對象)的方法。這是一個自定義的方法,它爲頻繁使用的任務提供了一種「保持在其中」的狀態。app
over:鼠標移到元素上要觸發的函數
out:鼠標移出元素要觸發的函數
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> *{ margin: 0; padding: 0; } .test{ width: 200px; height: 200px; background-color: wheat; } </style> </head> <body> <div class="test"></div> </body> <script src="jquery.min.js"></script> <script> // function enter(){ // console.log("enter") // } // function out(){ // console.log("out") // } // $(".test").hover(enter,out) $(".test").mouseenter(function(){ console.log("enter") }); $(".test").mouseleave(function(){ console.log("leave") }); </script> </html>
--------------------------CSS類 $("").addClass(class|fn) $("").removeClass([class|fn]) --------------------------屬性 $("").attr(); $("").removeAttr(); $("").prop(); $("").removeProp(); --------------------------HTML代碼/文本/值 $("").html([val|fn]) $("").text([val|fn]) $("").val([val|fn|arr]) --------------------------- $("#c1").css({"color":"red","fontSize":"35px"})
attr方法使用:
<input id="chk1" type="checkbox" />是否可見 <input id="chk2" type="checkbox" checked="checked" />是否可見 <script> //對於HTML元素自己就帶有的固有屬性,在處理時,使用prop方法。 //對於HTML元素咱們本身自定義的DOM屬性,在處理時,使用attr方法。 //像checkbox,radio和select這樣的元素,選中屬性對應「checked」和「selected」,這些也屬於固有屬性,所以 //須要使用prop方法去操做才能得到正確的結果。 // $("#chk1").attr("checked") // undefined // $("#chk1").prop("checked") // false // ---------手動選中的時候attr()得到到沒有意義的undefined----------- // $("#chk1").attr("checked") // undefined // $("#chk1").prop("checked") // true console.log($("#chk1").prop("checked"));//false console.log($("#chk2").prop("checked"));//true console.log($("#chk1").attr("checked"));//undefined console.log($("#chk2").attr("checked"));//checked </script>
咱們知道,
1
|
$(
"p"
).css(
"color"
,
"red"
)
|
是將css操做加到全部的標籤上,內部維持一個循環;但若是對於選中標籤進行不一樣處理,這時就須要對全部標籤數組進行循環遍歷啦
jquery支持兩種循環方式:
li=[10,20,30,40]; dic={name:"yuan",sex:"male"}; $.each(li,function(i,x){ console.log(i,x) });
$("tr").each(function(){ console.log($(this).html()) })
其中,$(this)代指當前循環標籤。
/* function f(){ for(var i=0;i<4;i++){ if (i==2){ return } console.log(i) } } f(); // 這個例子你們應該不會有問題吧!!! //----------------------------------------------------------------------- li=[11,22,33,44]; $.each(li,function(i,v){ if (v==33){ return ; // ===試一試 return false會怎樣? } console.log(v) }); //------------------------------------------ // 你們再考慮: function裏的return只是結束了當前的函數,並不會影響後面函數的執行 //原本這樣沒問題,但由於咱們的需求裏有不少這樣的狀況:咱們無論循環到第幾個函數時,一旦return了, //但願後面的函數也再也不執行了!基於此,jquery在$.each裏又加了一步: for(var i in obj){ ret=func(i,obj[i]) ; if(ret==false){ return ; } } // 這樣就很靈活了: // <1>若是你想return後下面循環函數繼續執行,那麼就直接寫return或return true // <2>若是你不想return後下面循環函數繼續執行,那麼就直接寫return false // ---------------------------------------------------------------------
//建立一個標籤對象 $("<p>") //內部插入 $("").append(content|fn) ----->$("p").append("<b>Hello</b>"); $("").appendTo(content) ----->$("p").appendTo("div"); $("").prepend(content|fn) ----->$("p").prepend("<b>Hello</b>"); $("").prependTo(content) ----->$("p").prependTo("#foo"); //外部插入 $("").after(content|fn) ----->$("p").after("<b>Hello</b>"); $("").before(content|fn) ----->$("p").before("<b>Hello</b>"); $("").insertAfter(content) ----->$("p").insertAfter("#foo"); $("").insertBefore(content) ----->$("p").insertBefore("#foo"); //替換 $("").replaceWith(content|fn) ----->$("p").replaceWith("<b>Paragraph. </b>"); //刪除 $("").empty() $("").remove([expr]) //複製 $("").clone([Even[,deepEven]])
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <script src="jquery-2.1.4.min.js"></script> <script> $(document).ready(function() { $("#hide").click(function () { $("p").hide(1000); }); $("#show").click(function () { $("p").show(1000); }); //用於切換被選元素的 hide() 與 show() 方法。 $("#toggle").click(function () { $("p").toggle(); }); }) </script> <link type="text/css" rel="stylesheet" href="style.css"> </head> <body> <p>hello</p> <button id="hide">隱藏</button> <button id="show">顯示</button> <button id="toggle">切換</button> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <script src="jquery-2.1.4.min.js"></script> <script> $(document).ready(function(){ $("#slideDown").click(function(){ $("#content").slideDown(1000); }); $("#slideUp").click(function(){ $("#content").slideUp(1000); }); $("#slideToggle").click(function(){ $("#content").slideToggle(1000); }) }); </script> <style> #content{ text-align: center; background-color: lightblue; border:solid 1px red; display: none; padding: 50px; } </style> </head> <body> <div id="slideDown">出現</div> <div id="slideUp">隱藏</div> <div id="slideToggle">toggle</div> <div id="content">helloworld</div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <script src="jquery-2.1.4.min.js"></script> <script> $(document).ready(function(){ $("#in").click(function(){ $("#id1").fadeIn(1000); }); $("#out").click(function(){ $("#id1").fadeOut(1000); }); $("#toggle").click(function(){ $("#id1").fadeToggle(1000); }); $("#fadeto").click(function(){ $("#id1").fadeTo(1000,0.4); }); }); </script> </head> <body> <button id="in">fadein</button> <button id="out">fadeout</button> <button id="toggle">fadetoggle</button> <button id="fadeto">fadeto</button> <div id="id1" style="display:none; width: 80px;height: 80px;background-color: blueviolet"></div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <script src="jquery-2.1.4.min.js"></script> </head> <body> <button>hide</button> <p>helloworld helloworld helloworld</p> <script> $("button").click(function(){ $("p").hide(1000,function(){ alert($(this).html()) }) }) </script> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <script src="js/jquery-2.2.3.js"></script> <script> function selectall(){ $("table :checkbox").prop("checked",true) } function che(){ $("table :checkbox").prop("checked",false) } function reverse(){ // var idlist=$("table :checkbox") // for(var i=0;i<idlist.length;i++){ // var element=idlist[i]; // // var ischecked=$(element).prop("checked") // if (ischecked){ // $(element).prop("checked",false) // } // else { // $(element).prop("checked",true) // } // // } $("table :checkbox").each(function(){ if ($(this).prop("checked")){ $(this).prop("checked",false) } else { $(this).prop("checked",true) } }); // li=[10,20,30,40] //// dic={name:"yuan",sex:"male"} // $.each(li,function(i,x){ // console.log(i,x) // }) } </script> </head> <body> <button onclick="selectall();">全選</button> <button onclick="che();">取消</button> <button onclick="reverse();">反選</button> <table border="1"> <tr> <td><input type="checkbox"></td> <td>111</td> </tr> <tr> <td><input type="checkbox"></td> <td>222</td> </tr> <tr> <td><input type="checkbox"></td> <td>333</td> </tr> <tr> <td><input type="checkbox"></td> <td>444</td> </tr> </table> </body> </html>
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>批量編輯</title> <!--<link rel="stylesheet" href="css/mycss.css" />--> <style> *{ margin: 0; padding: 0; } body { font-family: 'Open Sans', sans-serif; font-weight: 300; line-height: 1.42em; color:rebeccapurple; background-color:goldenrod; } h1 { font-size:3em; font-weight: 300; line-height:1em; text-align: center; color: #4DC3FA; } .blue { color: #185875; } .yellow { color: #FFF842; } /*!*彈出層罩子*!*/ #full { background-color:gray; left:0; opacity:0.7; position:absolute; top:0; filter:alpha(opacity=30); } .modified { background-color: #1F2739; border:3px solid whitesmoke; height:400px; left:50%; margin:-200px 0 0 -200px; padding:1px; position:fixed; /*position:absolute;*/ top:50%; width:400px; display:none; } li { list-style: none; margin: 20px 0 0 50px; color: #FB667A; } input[type="text"] { padding: 10px; border: solid 1px #dcdcdc; /*transition: box-shadow 3s, border 3s;*/ } .iputbutton { margin: 60px 0 0 50px; color: whitesmoke; background-color: #FB667A; height: 30px; width: 100px; border: 1px dashed; } .container th h1 { font-weight: bold; font-size: 1em; text-align: left; color: #185875; } .container td { font-weight: normal; font-size: 1em; } .container { width: 80%; margin: 0 auto; } .container td, .container th { padding-bottom: 2%; padding-top: 2%; padding-left:2%; } /*單數行*/ .container tr:first-child { background-color: red; } /*偶數行*/ .container tr:not(first-child){ background-color: cyan; } .container th { background-color: #1F2739; } .container td:last-child { color: #FB667A; } /*鼠標進過行*/ .container tr:hover { background-color: #464A52; } /*鼠標進過列*/ .container td:hover { background-color: #FB667A; color: #403E10; font-weight: bold; transform: translate3d(5px, -5px, 0); } </style> <script src="jquery-2.2.3.js"></script> <script> //點擊【編輯】顯示 $(function () { $("table[name=host] tr:gt(0) td:last-child").click(function (event) { alert("234"); // $("#full").css({height:"100%",width:"100%"}); $(".modified").data('current-edit-obj', $(this)); $(".modified,#full").show(); var hostname = $(this).siblings("td[name=hostname]").text(); $(".modified #hostname").val(hostname); var ip = $(this).siblings("td[name=ip]").text(); $(".modified #ip").val(ip); var port = $(this).siblings("td[name=port]").text(); $(".modified #port").val(port); }); //取消編輯 $(".modified #cancel").bind("click", function () { $(".modified,#full").hide(); }); // 肯定修改 $(".modified #ok").bind("click", function (event) { var check_status = true; var ths = $(".modified").data('current-edit-obj'); var hostname = $(".modified #hostname").val().trim(); var ip = $(".modified #ip").val().trim(); var port = $(".modified #port").val().trim(); var port = parseInt(port); console.log(port); // 端口爲空設置爲22 if (isNaN(port)) { alert("您沒有設置正常的SSH端口號,將採用默認22號端口"); var port = 22; }else if ( port > 65535) { // 若是端口不是一個數字 或者端口大於65535 var check_status = false; $(".modified #port").css("border-color","red"); alert("端口號超過範圍!") }; // 主機和ip不能是空 if ( hostname == ""){ var check_status = false; $(".modified #hostname").css("border-color","red"); }else if (ip == "") { var check_status = false; $(".modified #ip").css("border-color","red"); }; if (check_status == false){ return false; }else{ //$(this).css("height","60px") 爲何不用$(this),而用$() $(ths).siblings("td[name=hostname]").text(hostname); $(ths).siblings("td[name=ip]").text(ip); $(ths).siblings("td[name=port]").text(port); $(".modified,#full").hide(); }; }); }); </script> </head> <body> <h1> <span class="blue"><</span>Homework1<span class="blue">></span> <span class="yellow">HostList</span> </h1> <div id="full"> <div class="modified"> <li>主機名:<input id="hostname" type="text" value="" />*</li> <li>ip地址:<input id="ip" type="text" value="" />*</li> <li>端口號:<input id="port" type="text" value="" />[0-65535]</li> <div id="useraction"> <input class="iputbutton" type="button" name="肯定" id="ok" value="肯定"/> <input class="iputbutton" type="button" name="取消" id="cancel" value="取消"/> </div> </div> </div> <table class="container" name="host"> <tr> <th><h1>主機名</h1></th> <th><h1>IP地址</h1></th> <th><h1>端口</h1></th> <th><h1>操做</h1></th> </tr> <tr> <td name="hostname">web01</td> <td name="ip">192.168.2.1</td> <td name="port">22</td> <td>編輯 </td> </tr> <tr> <td name="hostname">web02</td> <td name="ip">192.168.2.2</td> <td name="port">223</td> <td>編輯 </td> </tr> <tr> <td name="hostname">web03</td> <td name="ip">192.168.2.3</td> <td name="port">232</td> <td>編輯 </td> </tr> <tr> <td name="hostname">web04</td> <td name="ip">192.168.2.4</td> <td name="port">232</td> <td>編輯 </td> </tr> </table> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <script src="js/jquery-2.2.3.js"></script> <script> window.onscroll=function(){ var current=$(window).scrollTop(); console.log(current) if (current>100){ $(".returnTop").removeClass("hide") } else { $(".returnTop").addClass("hide") } } function returnTop(){ // $(".div1").scrollTop(0); $(window).scrollTop(0) } </script> <style> body{ margin: 0px; } .returnTop{ height: 60px; width: 100px; background-color: darkgray; position: fixed; right: 0; bottom: 0; color: greenyellow; line-height: 60px; text-align: center; } .div1{ background-color: orchid; font-size: 5px; overflow: auto; width: 500px; } .div2{ background-color: darkcyan; } .div3{ background-color: aqua; } .div{ height: 300px; } .hide{ display: none; } </style> </head> <body> <div class="div1 div"> <p>hello</p> <p>hello</p> <p>hello</p> <p>hello</p> <p>hello</p> <p>hello</p> <p>hello</p> <p>hello</p> <p>hello</p> <p>hello</p> <p>hello</p> <p>hello</p> <p>hello</p> <p>hello</p> <p>hello</p> <p>hello</p> <p>hello</p> <p>hello</p> </div> <div class="div2 div"></div> <div class="div3 div"></div> <div class="returnTop hide" onclick="returnTop();">返回頂部</div> </body> </html>
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> <style> body{ margin: 0px; } img { border: 0; } ul{ padding: 0; margin: 0; list-style: none; } .clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } .wrap{ width: 980px; margin: 0 auto; } .pg-header{ background-color: #303a40; -webkit-box-shadow: 0 2px 5px rgba(0,0,0,.2); -moz-box-shadow: 0 2px 5px rgba(0,0,0,.2); box-shadow: 0 2px 5px rgba(0,0,0,.2); } .pg-header .logo{ float: left; padding:5px 10px 5px 0px; } .pg-header .logo img{ vertical-align: middle; width: 110px; height: 40px; } .pg-header .nav{ line-height: 50px; } .pg-header .nav ul li{ float: left; } .pg-header .nav ul li a{ display: block; color: #ccc; padding: 0 20px; text-decoration: none; font-size: 14px; } .pg-header .nav ul li a:hover{ color: #fff; background-color: #425a66; } .pg-body{ } .pg-body .catalog{ position: absolute; top:60px; width: 200px; background-color: #fafafa; bottom: 0px; } .pg-body .catalog.fixed{ position: fixed; top:10px; } .pg-body .catalog .catalog-item.active{ color: #fff; background-color: #425a66; } .pg-body .content{ position: absolute; top:60px; width: 700px; margin-left: 210px; background-color: #fafafa; overflow: auto; } .pg-body .content .section{ height: 500px; } </style> </head> <body> <div class="pg-header"> <div class="wrap clearfix"> <div class="logo"> <a href="#"> <img src="images/3.jpg"> </a> </div> <div class="nav"> <ul> <li> <a href="#">首頁</a> </li> <li> <a href="#">功能一</a> </li> <li> <a href="#">功能二</a> </li> </ul> </div> </div> </div> <div class="pg-body"> <div class="wrap"> <div class="catalog"> <div class="catalog-item" auto-to="function1"><a>第1張</a></div> <div class="catalog-item" auto-to="function2"><a>第2張</a></div> <div class="catalog-item" auto-to="function3"><a>第3張</a></div> </div> <div class="content"> <div menu="function1" class="section"> <h1>第一章</h1> </div> <div menu="function2" class="section"> <h1>第二章</h1> </div> <div menu="function3" class="section"> <h1>第三章</h1> </div> </div> </div> </div> <script type="text/javascript" src="js/jquery-2.2.3.js"></script> <script type="text/javascript"> window.onscroll=function(){ var ws=$(window).scrollTop() if (ws>50){ $(".catalog").addClass("fixed") } else { $(".catalog").removeClass("fixed") } $(".content").children("").each(function(){ var offtop=$(this).offset().top; // console.log(offtop) var total=$(this).height()+offtop; if (ws>offtop && ws<total){ if($(window).height()+$(window).scrollTop()==$(document).height()){ var index=$(".catalog").children(" :last").css("fontSize","40px").siblings().css("fontSize","12px") console.log(index) target='div[auto-to="'+index+'"]'; $(".catalog").children(target).css("fontSize","40px").siblings().css("fontSize","12px") } else{ var index=$(this).attr("menu"); target='div[auto-to="'+index+'"]'; $(".catalog").children(target).css("fontSize","40px").siblings().css("fontSize","12px") } } }) } </script> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <div class="outer"> <div class="condition"> <div class="icons" style="display:inline-block"> <a onclick="add(this);"><button>+</button></a> </div> <div class="input" style="display:inline-block"> <input type="checkbox"> <input type="text" value="alex"> </div> </div> </div> <script src="js/jquery-2.2.3.js"></script> <script> function add(self){ var $duplicate = $(self).parent().parent().clone(); $duplicate.find('a[onclick="add(this);"]').attr('onclick',"removed(this)").children("").text("-"); $duplicate.appendTo($(self).parent().parent().parent()); } function removed(self){ $(self).parent().parent().remove() } </script> </body> </html>
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> </head> <body> <div style="border: 1px solid #ddd;width: 600px;position: absolute;"> <div id="title" style="background-color: black;height: 40px;color: white;"> 標題 </div> <div style="height: 300px;"> 內容 </div> </div> <script type="text/javascript" src="jquery-2.2.3.js"></script> <script> $(function(){ // 頁面加載完成以後自動執行 $('#title').mouseover(function(){ $(this).css('cursor','move'); }).mousedown(function(e){ //console.log($(this).offset()); var _event = e || window.event; // 原始鼠標橫縱座標位置 var ord_x = _event.clientX; var ord_y = _event.clientY; var parent_left = $(this).parent().offset().left; var parent_top = $(this).parent().offset().top; $(this).bind('mousemove', function(e){ var _new_event = e || window.event; var new_x = _new_event.clientX; var new_y = _new_event.clientY; var x = parent_left + (new_x - ord_x); var y = parent_top + (new_y - ord_y); $(this).parent().css('left',x+'px'); $(this).parent().css('top',y+'px'); }) }).mouseup(function(){ $(this).unbind('mousemove'); }); }) </script> </body> </html> 複製代碼
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>bigger</title> <style> *{ margin: 0; padding:0; } .outer{ height: 350px; width: 350px; border: dashed 5px cornflowerblue; } .outer .small_box{ position: relative; } .outer .small_box .float{ height: 175px; width: 175px; background-color: darkgray; opacity: 0.4; fill-opacity: 0.4; position: absolute; display: none; } .outer .big_box{ height: 400px; width: 400px; overflow: hidden; position:absolute; left: 360px; top: 0px; z-index: 1; border: 5px solid rebeccapurple; display: none; } .outer .big_box img{ position: absolute; z-index: 5; } </style> </head> <body> <div class="outer"> <div class="small_box"> <div class="float"></div> <img src="small.jpg"> </div> <div class="big_box"> <img src="big.jpg"> </div> </div> <script src="js/jquery-2.2.3.js"></script> <script> $(function(){ $(".small_box").mouseover(function(){ $(".float").css("display","block"); $(".big_box").css("display","block") }) $(".small_box").mouseout(function(){ $(".float").css("display","none"); $(".big_box").css("display","none") }) $(".small_box").mousemove(function(e){ var _event=e || window.event; var float_width=$(".float").width(); var float_height=$(".float").height(); console.log(float_height,float_width); var float_height_half=float_height/2; var float_width_half=float_width/2; console.log(float_height_half,float_width_half); var small_box_width=$(".small_box").height(); var small_box_height=$(".small_box").width(); // 鼠標點距離左邊界的長度與float應該與左邊界的距離差半個float的width,height同理 var mouse_left=_event.clientX-float_width_half; var mouse_top=_event.clientY-float_height_half; if(mouse_left<0){ mouse_left=0 }else if (mouse_left>small_box_width-float_width){ mouse_left=small_box_width-float_width } if(mouse_top<0){ mouse_top=0 }else if (mouse_top>small_box_height-float_height){ mouse_top=small_box_height-float_height } $(".float").css("left",mouse_left+"px"); $(".float").css("top",mouse_top+"px") var percentX=($(".big_box img").width()-$(".big_box").width())/ (small_box_width-float_width); var percentY=($(".big_box img").height()-$(".big_box").height())/(small_box_height-float_height); console.log(percentX,percentY) $(".big_box img").css("left", -percentX*mouse_left+"px") $(".big_box img").css("top", -percentY*mouse_top+"px") }) }) </script> </body> </html>
$("").offset([coordinates]) $("").position() $("").scrollTop([val]) $("").scrollLeft([val])
示例1:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> .test1{ width: 200px; height: 200px; background-color: wheat; } </style> </head> <body> <h1>this is offset</h1> <div class="test1"></div> <p></p> <button>change</button> </body> <script src="jquery-3.1.1.js"></script> <script> var $offset=$(".test1").offset(); var lefts=$offset.left; var tops=$offset.top; $("p").text("Top:"+tops+" Left:"+lefts); $("button").click(function(){ $(".test1").offset({left:200,top:400}) }) </script> </html>
示例2:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> *{ margin: 0; } .box1{ width: 200px; height: 200px; background-color: rebeccapurple; } .box2{ width: 200px; height: 200px; background-color: darkcyan; } .parent_box{ position: relative; } </style> </head> <body> <div class="box1"></div> <div class="parent_box"> <div class="box2"></div> </div> <p></p> <script src="jquery-3.1.1.js"></script> <script> var $position=$(".box2").position(); var $left=$position.left; var $top=$position.top; $("p").text("TOP:"+$top+"LEFT"+$left) </script> </body> </html>
示例3:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> body{ margin: 0; } .returnTop{ height: 60px; width: 100px; background-color: peru; position: fixed; right: 0; bottom: 0; color: white; line-height: 60px; text-align: center; } .div1{ background-color: wheat; font-size: 5px; overflow: auto; width: 500px; height: 200px; } .div2{ background-color: darkgrey; height: 2400px; } .hide{ display: none; } </style> </head> <body> <div class="div1 div"> <h1>hello</h1> <h1>hello</h1> <h1>hello</h1> <h1>hello</h1> <h1>hello</h1> <h1>hello</h1> <h1>hello</h1> <h1>hello</h1> <h1>hello</h1> <h1>hello</h1> <h1>hello</h1> <h1>hello</h1> <h1>hello</h1> <h1>hello</h1> <h1>hello</h1> <h1>hello</h1> </div> <div class="div2 div"></div> <div class="returnTop hide">返回頂部</div> <script src="jquery-3.1.1.js"></script> <script> $(window).scroll(function(){ var current=$(window).scrollTop(); console.log(current); if (current>100){ $(".returnTop").removeClass("hide") } else { $(".returnTop").addClass("hide") } }); $(".returnTop").click(function(){ $(window).scrollTop(0) }); </script> </body> </html>
$("").height([val|fn]) $("").width([val|fn]) $("").innerHeight() $("").innerWidth() $("").outerHeight([soptions]) $("").outerWidth([options])
示例:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> *{ margin: 0; } .box1{ width: 200px; height: 200px; background-color: wheat; padding: 50px; border: 50px solid rebeccapurple; margin: 50px; } </style> </head> <body> <div class="box1"> DIVDIDVIDIV </div> <p></p> <script src="jquery-3.1.1.js"></script> <script> var $height=$(".box1").height(); var $innerHeight=$(".box1").innerHeight(); var $outerHeight=$(".box1").outerHeight(); var $margin=$(".box1").outerHeight(true); $("p").text($height+"---"+$innerHeight+"-----"+$outerHeight+"-------"+$margin) </script> </body> </html>
擴展jQuery對象自己。
用來在jQuery命名空間上增長新函數。
在jQuery命名空間上增長兩個函數:
<script> jQuery.extend({ min: function(a, b) { return a < b ? a : b; }, max: function(a, b) { return a > b ? a : b; } }); jQuery.min(2,3); // => 2 jQuery.max(4,5); // => 5 </script>
擴展 jQuery 元素集來提供新的方法(一般用來製做插件)
增長兩個插件方法:
<body> <input type="checkbox"> <input type="checkbox"> <input type="checkbox"> <script src="jquery.min.js"></script> <script> jQuery.fn.extend({ check: function() { $(this).attr("checked",true); }, uncheck: function() { $(this).attr("checked",false); } }); $(":checkbox:gt(0)").check() </script> </body>