1 下载jquery的安装包,添加到你要用的文件夹中

  1. script引用jqurey
  2. <!--
  3. html-css bootstrap
  4. javaScript jquery
  5. jqery 是一个javaScript
  6. -->
  7. <div id="app">div</div>
  8. <script>
  9. // var app = document.getElementById("app");
  10. // app.onclick = function(){
  11. // this.innerHTML = "change"
  12. // }
  13. var app = $("#app");
  14. console.log(app)
  1. <!-- jquery支持所有的css选择器 -->
  2. <ul class="parent">
  3. <li>1</li>
  4. <li>2</li>
  5. <li>3</li>
  6. <li>4</li>
  7. </ul>
  8. <script>
  9. var lis = $(".parent li")
  10. console.log(lis)
  11. 或者使用id的选择器方法

事件

  1. <div id="app">徐佳佳</div>
  2. <script>
  3. $("#app").click(function(){
  4. $(this).html("高云锋")
  5. })

参数事件

  1. <input type="text" id="app" value="吴樟大傻逼">
  2. <script>
  3. $("#app").focus(function(){
  4. $(this).css({backgroundColor:"red",width:"100px"})
  5. }).blur(function(){
  6. $(this).css({backgroundColor:"pink"})
  7. })
  8. // $("#app").blur(function(){
  9. // $(this).css({backgroundColor:"yellow",width:"100px"})
  10. // })

效果

  1. <div>hellow word</div>
  2. <button id="btn">按钮</button>
  3. <script>
  4. $("#btn").click(function(){
  5. $("div").hide(12)
  6. })
  7. </script>

效果切换

  1. <div>hellow word</div>
  2. <button id="btn">按钮</button>
  3. <script>
  4. $("#btn").click(function(){
  5. var isShow = $("div").is(":visible");
  6. console.log(isShow)
  7. if(isShow){
  8. $("div").hide(1000)
  9. }else{
  10. $("div").show(1000)
  11. }
  12. })

js.html

  1. <div id="div" style="display: block;">hellow word</div>
  2. <button id="btn">按钮</button>
  3. <script>
  4. var div = document.getElementById("div");
  5. var btn = document.getElementById("btn");
  6. btn.onclick = function(){
  7. if(div.style.display=="block"){
  8. div.style.display = "none"
  9. }else{
  10. div.style.display = "block"
  11. }
  12. }

toggle事件

  1. <div>hellow word</div>
  2. <button id="btn">按钮</button>
  3. <script>
  4. $("#btn").click(function(){
  5. // toggle 融合hide和show方法
  6. $("div").toggle(1000)
  7. })