文本操作

  1. $("选择符").html() // 读取指定元素的内容,如果$()函数获取了有多个元素,则提取第一个元素
  2. $("选择符").html(内容) // 修改内容,如果$()函数获取了多个元素, 则批量修改内容
  3. $("选择符").text() // 效果同上,但是获取的内容是纯文本,不包含html代码
  4. $("选择符").text(内容) // 效果同上,但是修改的内容中如果有html文本,在直接转成实体字符,而不是html代码
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <script src="jquery3.6.js"></script>
  7. <script>
  8. $(function () {
  9. $(".c1").click(function () {
  10. // 获取文本
  11. // console.log(this.innerHTML);
  12. // console.log(this.innerText);
  13. console.log($(this).html());
  14. console.log($(this).text());
  15. // 设置文本
  16. // $(this).html("hello world");
  17. // $(this).text("hello world");
  18. // $(this).html("<a href=''>hello world</a>");
  19. $(this).text("<a href=''>hello world</a>");
  20. })
  21. })
  22. </script>
  23. </head>
  24. <body>
  25. <p class="c1"><span>PPP</span></p>
  26. </body>
  27. </html

value操作

  1. $().val()
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <script src="jquery3.6.js"></script>
  7. <script>
  8. $(function () {
  9. $("#i1").blur(function () {
  10. // 获取jquery对象的value属性值
  11. console.log(this.value);
  12. console.log($(this).val());
  13. // 设置value属性值
  14. $(this).val("hello world")
  15. });
  16. $("#i3").change(function () {
  17. console.log(this.value);
  18. console.log($(this).val());
  19. $(this).val("guangdong");
  20. });
  21. console.log($("#i2").val());
  22. console.log($("#i2").val("hello pig!"))
  23. })
  24. </script>
  25. </head>
  26. <body>
  27. <input type="text" id="i1">
  28. <select id="i3">
  29. <option value="hebei">河北省</option>
  30. <option value="hubei">湖北省</option>
  31. <option value="guangdong">广东省</option>
  32. </select>
  33. <p><textarea name="" id="i2" cols="30" rows="10">123</textarea></p>
  34. </body>
  35. </html>

属性操作

  1. //读取属性值
  2. $("选择符").attr("属性名"); // 获取非表单元素的属性值,只会提取第一个元素的属性值
  3. $("选择符").prop("属性名"); // 表单元素的属性,只会提取第一个元素的属性值
  4. //操作属性
  5. $("选择符").attr("属性名","属性值"); // 修改非表单元素的属性值,如果元素有多个,则全部修改
  6. $("选择符").prop("属性名","属性值"); // 修改表单元素的属性值,如果元素有多个,则全部修改
  7. $("选择符").attr({'属性名1':'属性值1','属性名2':'属性值2',.....})
  8. $("选择符").prop({'属性名1':'属性值1','属性名2':'属性值2',.....})
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <script src="jquery3.6.js"></script>
  7. <script>
  8. $(function () {
  9. // ================== attr ==================
  10. // 获取属性值
  11. // console.log($("#i1").attr("name"));
  12. // console.log($("#i1").attr("class"));
  13. // 设置属性属性值
  14. // $("#i1").attr("name","mf");
  15. // $("#i1").attr("k1","v1");
  16. // $("#i1").attr({name:"mf","k1":"v1"});
  17. // ================== prop:表单属性 ==================
  18. console.log($(":checkbox").attr("checked")); // undefined
  19. console.log($(":checkbox").prop("checked")); // false
  20. })
  21. </script>
  22. </head>
  23. <body>
  24. <div class="c1" id="i1" name="mufeng">DIV</div>
  25. <input type="checkbox">
  26. </body>
  27. </html>
  1. <!-- 表格案例 -->
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>Title</title>
  7. <script src="jquery3.6.js"></script>
  8. </head>
  9. <body>
  10. <button class="select_all">全选</button>
  11. <button class="cancel">取消</button>
  12. <button class="reverse">反选</button>
  13. <hr>
  14. <table border="1">
  15. <tr>
  16. <td>选择</td>
  17. <td>姓名</td>
  18. <td>年龄</td>
  19. </tr>
  20. <tr>
  21. <td><input type="checkbox"></td>
  22. <td>张三</td>
  23. <td>23</td>
  24. </tr>
  25. <tr>
  26. <td><input type="checkbox"></td>
  27. <td>李四</td>
  28. <td>23</td>
  29. </tr>
  30. <tr>
  31. <td><input type="checkbox"></td>
  32. <td>王五</td>
  33. <td>23</td>
  34. </tr>
  35. </table>
  36. <script>
  37. $(".select_all").click(function () {
  38. $("table input:checkbox").prop("checked",true);
  39. });
  40. $(".cancel").click(function () {
  41. $("table input:checkbox").prop("checked",false);
  42. });
  43. $(".reverse").click(function () {
  44. $("table input:checkbox").each(function () {
  45. $(this).prop("checked",!$(this).prop("checked"))
  46. })
  47. });
  48. </script>
  49. </body>
  50. </html>
  1. <!-- each -->
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>Title</title>
  7. <script src="jquery3.6.js"></script>
  8. </head>
  9. <body>
  10. <button class="select_all">全选</button>
  11. <button class="cancel">取消</button>
  12. <button class="reverse">反选</button>
  13. <hr>
  14. <table border="1">
  15. <tr>
  16. <td>选择</td>
  17. <td>姓名</td>
  18. <td>年龄</td>
  19. </tr>
  20. <tr>
  21. <td><input type="checkbox"></td>
  22. <td>张三</td>
  23. <td>23</td>
  24. </tr>
  25. <tr>
  26. <td><input type="checkbox"></td>
  27. <td>李四</td>
  28. <td>23</td>
  29. </tr>
  30. <tr>
  31. <td><input type="checkbox"></td>
  32. <td>王五</td>
  33. <td>23</td>
  34. </tr>
  35. </table>
  36. <script>
  37. $(".select_all").click(function () {
  38. $("table input:checkbox").prop("checked", true);
  39. });
  40. $(".cancel").click(function () {
  41. $("table input:checkbox").prop("checked", false);
  42. });
  43. $(".reverse").click(function () {
  44. /*
  45. var $eles = $("table input:checkbox");
  46. for(var i = 0;i<$eles.length;i++){
  47. var state = $($eles[i]).prop("checked");
  48. if (state){
  49. $($eles[i]).prop("checked",false);
  50. }else {
  51. $($eles[i]).prop("checked",true);
  52. }
  53. }
  54. */
  55. /*
  56. $("table input:checkbox").each(function () {
  57. var state = $(this).prop("checked");
  58. if (state){
  59. $(this).prop("checked",false);
  60. }else {
  61. $(this).prop("checked",true);
  62. }
  63. })
  64. */
  65. $("table input:checkbox").each(function () {
  66. $(this).prop("checked", !$(this).prop("checked"))
  67. })
  68. });
  69. </script>
  70. </body>
  71. </html>
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <script src="jquery3.6.js"></script>
  7. </head>
  8. <body>
  9. <ul>
  10. <li>23</li>
  11. <li>45</li>
  12. <li>78</li>
  13. <li>32</li>
  14. </ul>
  15. <script>
  16. // 类方法:each
  17. var arr = [111, 222, 333];
  18. $.each(arr, function (i, j) {
  19. // 循环体
  20. console.log(i, j)
  21. });
  22. var obj = {name: "alvin", age: 18};
  23. $.each(obj, function (k, v) {
  24. console.log(k, v);
  25. });
  26. // 实例方法each
  27. // $("ul li").css("color","red");
  28. $("ul li").each(function () {
  29. // console.log("OK");
  30. // 循环函数中this:代指的是每一次循环的dom对象
  31. console.log(this);
  32. var v = $(this).html();
  33. if (parseInt(v) > 40) {
  34. $(this).css("color", "red")
  35. }
  36. })
  37. </script>
  38. </body>
  39. </html>

css样式操作

  1. 获取样式
  2. $().css("样式属性"); // 获取元素的指定样式属性的值,如果有多个元素,只得到第一个元素的值
  3. 操作样式
  4. $().css("样式属性","样式值").css("样式属性","样式值");
  5. $().css({"样式属性1":"样式值1","样式属性2":"样式值2",....})
  6. $().css("样式属性":function(){
  7. // 其他代码操作
  8. return "样式值";
  9. });
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <script src="jquery3.6.js"></script>
  7. </head>
  8. <body>
  9. <div class="c1">hello JS</div>
  10. <script>
  11. $(".c1").css({"backgroundColor": "#369", "color": "white"})
  12. </script>
  13. </body>
  14. </html>

class 属性操作

  1. $().addClass("class1 class2 ... ...") // 给获取到的所有元素添加指定class样式
  2. $().removeClass() // 给获取到的所有元素删除指定class样式
  3. $().toggleClass() // 给获取到的所有元素进行判断,如果拥有指定class样式的则删除,如果没有指定样式则添加
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <script src="jquery3.6.js"></script>
  7. <style>
  8. .c1 {
  9. color: red;
  10. }
  11. .c2 {
  12. background-color: lightseagreen;
  13. }
  14. .c3 {
  15. font-style: italic;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <div class="c1">hello JS</div>
  21. <script>
  22. $(".c1").click(function () {
  23. // $(this).addClass("c2");
  24. // $(this).removeClass("c3");
  25. // 链式操作
  26. $(this).addClass("c2").removeClass("c3");
  27. });
  28. $(".c1").mouseover(function () {
  29. $(this).addClass("c3");
  30. })
  31. </script>
  32. </body>
  33. </html>
  1. <!-- 选项卡切换 -->
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>Title</title>
  7. <style>
  8. * {
  9. margin: 0;
  10. padding: 0;
  11. }
  12. .tab {
  13. width: 800px;
  14. height: 300px;
  15. /*border: 1px solid red;*/
  16. margin: 200px auto;
  17. }
  18. .tab ul {
  19. list-style: none;
  20. }
  21. .tab-title {
  22. background-color: #f7f7f7;
  23. border: 1px solid #eee;
  24. border-bottom: 1px solid #e4393c;
  25. }
  26. .tab .tab-title li {
  27. display: inline-block;
  28. padding: 10px 25px;
  29. font-size: 14px;
  30. }
  31. li.current {
  32. background-color: #e4393c;
  33. color: #fff;
  34. cursor: default;
  35. }
  36. .hide {
  37. display: none;
  38. }
  39. </style>
  40. <script src="jquery3.6.js"></script>
  41. </head>
  42. <body>
  43. <div class="tab">
  44. <ul class="tab-title">
  45. <li class="current">商品介绍</li>
  46. <li class="">规格与包装</li>
  47. <li class="">售后保障</li>
  48. <li class="">商品评价</li>
  49. </ul>
  50. <ul class="tab-content">
  51. <li>商品介绍...</li>
  52. <li class="hide">规格与包装...</li>
  53. <li class="hide">售后保障...</li>
  54. <li class="hide">商品评价...</li>
  55. </ul>
  56. </div>
  57. <script>
  58. $(".tab-title li").click(function () {
  59. // 事件函数
  60. // 点击标签获取current样式
  61. $(this).addClass("current").siblings().removeClass("current");
  62. // 详情内容的显示与隐藏
  63. console.log($(this).index());
  64. var index = $(this).index();
  65. $(".tab-content li").eq(index).removeClass("hide").siblings().addClass("hide");
  66. })
  67. </script>
  68. </body>
  69. </html>

节点操作

  1. //创建一个jquery标签对象
  2. $("<p>")
  3. //内部插入
  4. $("").append(content|fn) // $("p").append("<b>Hello</b>");
  5. $("").appendTo(content) // $("p").appendTo("div");
  6. $("").prepend(content|fn) // $("p").prepend("<b>Hello</b>");
  7. $("").prependTo(content) // $("p").prependTo("#foo");
  8. //外部插入
  9. $("").after(content|fn) // ("p").after("<b>Hello</b>");
  10. $("").before(content|fn) // $("p").before("<b>Hello</b>");
  11. $("").insertAfter(content) // $("p").insertAfter("#foo");
  12. $("").insertBefore(content) // $("p").insertBefore("#foo");
  13. //替换
  14. $("").replaceWith(content|fn) // $("p").replaceWith("<b>Paragraph. </b>");
  15. //删除
  16. $("").empty()
  17. $("").remove([expr])
  18. //复制
  19. $("").clone([Even[,deepEven]])
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <script src="jquery3.6.js"></script>
  7. </head>
  8. <body>
  9. <button class="add_btn">添加节点</button>
  10. <button class="del_btn">删除节点</button>
  11. <button class="replace_btn">替换节点</button>
  12. <div class="c1">
  13. <h3>hello JS!</h3>
  14. <h3 class="c2">hello world</h3>
  15. </div>
  16. <script>
  17. $(".add_btn").click(function () {
  18. // 创建jquery对象
  19. // var $img = $("<img>");
  20. // $img.attr("src","https://img1.baidu.com/it/u=3210260546,3888404253&fm=26&fmt=auto&gp=0.jpg")
  21. // 节点添加
  22. // $(".c1").append($img);
  23. // $img.appendTo(".c1")
  24. // $(".c1").prepend($img);
  25. // $(".c2").before($img);
  26. // 支持字符串操作
  27. $(".c1").append("<img src ='https://img1.baidu.com/it/u=3210260546,3888404253&fm=26&fmt=auto&gp=0.jpg'>")
  28. });
  29. $(".del_btn").click(function () {
  30. $(".c2").remove();
  31. // $(".c2").empty();
  32. });
  33. $(".replace_btn").click(function () {
  34. // alert(123);
  35. // var $img = $("<img>");
  36. // $img.attr("src","https://img1.baidu.com/it/u=3210260546,3888404253&fm=26&fmt=auto&gp=0.jpg")
  37. // $(".c2").replaceWith($img);
  38. $(".c2").replaceWith("<img src ='https://img1.baidu.com/it/u=3210260546,3888404253&fm=26&fmt=auto&gp=0.jpg'>");
  39. })
  40. </script>
  41. </body>
  42. </html>

事件委托

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <script src="jquery3.6.js"></script>
  7. </head>
  8. <body>
  9. <button class="add">add</button>
  10. <ul>
  11. <li>123</li>
  12. <li>234</li>
  13. <li>345</li>
  14. </ul>
  15. <script>
  16. /*$("ul li").click(function () {
  17. console.log($(this).html());
  18. });*/
  19. $("ul").on("click", "li", function () {
  20. console.log($(this).html())
  21. });
  22. $(".add").click(function () {
  23. $("ul").append("<li>456</li>")
  24. })
  25. </script>
  26. </body>
  27. </html>

复制节点

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <script src="jquery3.6.js"></script>
  7. </head>
  8. <body>
  9. <div class="outer">
  10. <div class="item">
  11. <input type="button" value="+" class="add_btn">
  12. <input type="text">
  13. </div>
  14. </div>
  15. <script>
  16. $(".add_btn").click(function () {
  17. var $clone = $(this).parent().clone();
  18. $clone.children(".add_btn").val("-").attr("class","remove_btn");
  19. $(".outer").append($clone);
  20. });
  21. /*$(".remove_btn").click(function () {
  22. $(this).parent().remove();
  23. });*/
  24. $(".outer").on("click",".remove_btn",function () {
  25. $(this).parent().remove();
  26. })
  27. </script>
  28. </body>
  29. </html>

css尺寸

  1. //内容区域
  2. $("").height([val|fn])
  3. $("").width([val|fn])
  4. //内容区域+padding区域
  5. $("").innerHeight()
  6. $("").innerWidth()
  7. //内容区域+padding+margin
  8. $("").outerHeight([soptions])
  9. $("").outerWidth([options])
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <style>
  7. *{
  8. margin: 0;
  9. }
  10. .c1{
  11. width: 200px;
  12. height: 200px;
  13. border:10px solid red;
  14. padding: 50px;
  15. margin: 50px;
  16. }
  17. </style>
  18. <script src="jquery3.6.js"></script>
  19. </head>
  20. <body>
  21. <div class="c1"></div>
  22. <script>
  23. console.log($(".c1").width());
  24. console.log($(".c1").height());
  25. console.log($(".c1").innerWidth());
  26. console.log($(".c1").innerHeight());
  27. console.log($(".c1").outerWidth(true));
  28. console.log($(".c1").outerHeight(true));
  29. </script>
  30. </body>
  31. </html>

css位置

  1. $("").offset([coordinates]) // 获取匹配元素在当前视口的相对偏移。
  2. $("").position() // 获取匹配元素相对父元素的偏移,position()函数无法用于设置操作。
  3. $("").scrollTop([val]) // 获取匹配元素相对滚动条顶部的偏移。
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <style>
  7. *{
  8. margin: 0;
  9. }
  10. .content{
  11. height: 2000px;
  12. background-color: lightgray;
  13. }
  14. .return_top{
  15. width: 120px;
  16. height: 50px;
  17. background-color: lightseagreen;
  18. color: white;
  19. text-align: center;
  20. line-height: 50px;
  21. position: fixed;
  22. bottom: 20px;
  23. right: 20px;
  24. }
  25. .hide{
  26. display: none;
  27. }
  28. </style>
  29. <script src="jquery3.6.js"></script>
  30. </head>
  31. <body>
  32. <div class="content">
  33. <h3>文章...</h3>
  34. </div>
  35. <div class="return_top hide">返回顶部</div>
  36. <script>
  37. console.log($(window).scrollTop());
  38. $(".return_top").click(function () {
  39. $(window).scrollTop(0)
  40. });
  41. $(window).scroll(function () {
  42. console.log($(this).scrollTop());
  43. var v =$(this).scrollTop();
  44. if (v > 100){
  45. $(".return_top").removeClass("hide");
  46. }else {
  47. $(".return_top").addClass("hide");
  48. }
  49. })
  50. </script>
  51. </body>
  52. </html>
  1. <!-- css偏移 -->
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>Title</title>
  7. <style>
  8. .c1{
  9. width: 800px;
  10. height: 500px;
  11. background-color: lightpink;
  12. margin: 100px auto;
  13. position: relative;
  14. }
  15. .c2{
  16. width: 200px;
  17. height: 200px;
  18. background-color: orange;
  19. }
  20. </style>
  21. <script src="jquery3.6.js"></script>
  22. </head>
  23. <body>
  24. <div class="c1">
  25. <div class="c2"></div>
  26. </div>
  27. <script>
  28. // 获取位置信息
  29. // offset:相对于窗口偏移 position:相对于已经定位的父标签偏移量
  30. var $offset = $(".c2").offset();
  31. var $position = $(".c2").position();
  32. console.log("$offset top:",$offset.top);
  33. console.log("$offset left:",$offset.left);
  34. console.log("$position top:",$position.top);
  35. console.log("$position left:",$position.left);
  36. // 设置偏移量 offset
  37. $(".c2").click(function () {
  38. $(this).offset({top:500,left:500})
  39. })
  40. </script>
  41. </body>
  42. </html>

动画效果

  1. //基本
  2. show([s,[e],[fn]]) 显示元素
  3. hide([s,[e],[fn]]) 隐藏元素
  4. //滑动
  5. slideDown([s],[e],[fn]) 向下滑动
  6. slideUp([s,[e],[fn]]) 向上滑动
  7. //淡入淡出
  8. fadeIn([s],[e],[fn]) 淡入
  9. fadeOut([s],[e],[fn]) 淡出
  10. fadeTo([[s],opacity,[e],[fn]]) 让元素的透明度调整到指定数值
  11. //自定义
  12. animate(p,[s],[e],[fn]) 自定义动画
  13. stop([c],[j]) 暂停上一个动画效果,开始当前触发的动画效果
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <style>
  7. .c1{
  8. width: 250px;
  9. height: 250px;
  10. background-color: black;
  11. position: absolute;
  12. top: 240px;
  13. left: 120px;
  14. }
  15. .hide{
  16. display: none;
  17. }
  18. </style>
  19. <script src="jquery3.6.js"></script>
  20. </head>
  21. <body>
  22. <p>
  23. <button class="show01">显示</button>
  24. <button class="hide01">隐藏</button>
  25. </p>
  26. <p>
  27. <button class="show02">显示</button>
  28. <button class="hide02">隐藏</button>
  29. </p>
  30. <p>
  31. <button class="show03">显示</button>
  32. <button class="hide03">隐藏</button>
  33. </p>
  34. <p>
  35. <button class="show04">显示</button>
  36. <button class="hide04">隐藏</button>
  37. </p>
  38. <p>
  39. <button class="animate">animate</button>
  40. </p>
  41. <hr>
  42. <div class="c1"></div>
  43. <script>
  44. // 自己实现的隐藏与显示
  45. $(".show01").click(function () {
  46. $(".c1").removeClass("hide")
  47. });
  48. $(".hide01").click(function () {
  49. $(".c1").addClass("hide")
  50. });
  51. // (1) show与hide方法
  52. $(".show02").click(function () {
  53. $(".c1").show(1000,function () {
  54. alert("显示成功")
  55. });
  56. });
  57. $(".hide02").click(function () {
  58. $(".c1").hide(1000,function () {
  59. alert("隐藏成功")
  60. })
  61. });
  62. // (2) slideDown与slideUp
  63. $(".show03").click(function () {
  64. $(".c1").slideDown(1000,function () {
  65. alert("显示成功")
  66. });
  67. });
  68. $(".hide03").click(function () {
  69. $(".c1").slideUp(1000,function () {
  70. alert("隐藏成功")
  71. })
  72. });
  73. // (3) fadeIn与fadeOut
  74. $(".show04").click(function () {
  75. $(".c1").fadeIn(1000,function () {
  76. alert("显示成功")
  77. });
  78. });
  79. $(".hide04").click(function () {
  80. $(".c1").fadeOut(1000,function () {
  81. alert("隐藏成功")
  82. })
  83. });
  84. // 自定义动画
  85. $(".animate").click(function () {
  86. $(".c1").animate({
  87. "border-radius":"50%",
  88. "top":340,
  89. "left":200
  90. },1000,function () {
  91. $(".c1").animate({
  92. "border-radius":"0",
  93. "top":240,
  94. "left":120
  95. },1000,function () {
  96. $(".animate").trigger("click")
  97. })
  98. })
  99. })
  100. </script>
  101. </body>
  102. </html>