• prev()方法使用的注意点


    prev()表示检索同类标签的前一个元素.注意这个方法要写在你所需要写的方法的后面,我们试一下发现把这个prev()方法放在前面根本不起作用,放在后面才会起作用.

    $(".my_mess_ul li").click(function () {
      $(this).find("a").css("text-decoration", "none");
      index = $(this).index();
      var index01 = index + 1;
      $(this).find(".span_bottom").show();
      $(this).siblings("li").find(".span_bottom").hide();

      $(this).find(".span_right").show();
      $(this).siblings("li").find(".span_right").hide();
      $(this).prev().find(".span_right").show();

    }

  • 相关阅读:
    Git
    Git
    Git
    Git
    Docker
    Linux
    Linux
    Python
    Python
    SQL
  • 原文地址:https://www.cnblogs.com/xiaoyunyun/p/5555463.html
Copyright © 2020-2023  润新知