李子佩說的都隊資料庫設計心得
阿新 • • 發佈:2020-11-21
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <script src="jquery-1.11.3/jquery.min.js"></script> <script>$(function(){ // 獲取標籤物件 // var $p = $("P"); // alert($p.length); // 通過jquery設定標籤樣式 // $p.css({"color":"red"}); // // var $div = $(".div1"); // alert($div.length); // var $div1 = $("#box1"); //alert($div1.length); // jquery獲取標籤和css選擇器匹配標籤的方式一樣 // var h1 = $("div h1"); // alert(h1.length); // 屬性選擇器,先根據標籤選擇html標籤,然後根據屬性值進行過濾 var $input = $("input[type=text]"); alert($input.length); }); </script> </head> <body> <p>hello</p> <p>hello1</p> <div class="div1">hahhahaha</div> <div id="box1">xixixiix</div> <div> <h1>哈哈</h1> </div> <input type="text"> <input type="button"> </body> </html>