Home > Web Front-end > JS Tutorial > body text

jQuery study notes: jQuery DOM operation_jquery

WBOY
Release: 2016-05-16 18:13:52
Original
962 people have browsed it

一.节点的操作

1.查找节点:

var $var_1=$("htmltype");   //这句话就是获取所有htmltype节点

如:var $ul_1=$("ul");

 

2.创建并追加节点:

var $var_1=$("");//这句话是创建一个节点

$("htmltype2").append($var_1) ; //这句话是把节点插入所有htmltype2节点中

例子:var $li_1=$("

  • 香蕉
  • ");

             $("ul").append($li_1);

     

    其中插入方法有以下几种:

    • append() 把B追加到A内部(所有的A元素,以下类似)
    • appendTo() 把A追加到B内部
    • prepend() 把B追加到A内部的内容前
    • prependTo() 把A追加到B的内容前
    • after() 在A后追加B
    • insertAfter() 在A前追加B
    • before() 在A前追加B
    • insertBefore()在A后追加B

    例子:$("ul").append("

  • 你好
  • ");//在ul内部追加li

             $("

  • 你好
  • ").appendTo("ul");//在ul内部追加li

     

    3.删除节点

    • remove() 删除该元素
    • empty() 清空节点,包括后代节点

    例子:$("ul  li:eq[1]").remove(); //获取ul中的第二个li并删除

            $("ul  li").remove(“li[title="菠萝"]”);//删除ul中li元素属性title="菠萝"的元素

     

    4.复制节点

    • clone();//复制本节点

    例子:$("ul  li:eq[1]").clone().appenTo("ul");//复制并追加到ul中,只复制是不会显示出来的

     

    5.替换节点

    • replaceWith();//将B替换所有A
    • replaceAll();//将A替换所有B

    6.包裹节点

    • warpAll();//用B包裹A
    • warpInner();//用B包裹A的内容

     

    二.属性操作

    1.获取和设置属性

    var $var_1=$("p");//这句话是获取节点P

     var $p_1=$var_1.attr("title");//获取节点P的title属性

    var $p_2=$var_1.attr("title","你好");//设置节点P的title属性为"你好"

      

    2.删除属性

    $("p").removeAttr("title");//删除节点P的Title属性

     

    三.样式操作

    1.获取和设置样式

    var $var_class=$("p").attr("class");//获取节点P的class属性

    $("p").attr("class","class1");设置节点P的class属性为样式表类class1

     

    2.追加样式

    • addClass() 添加样式到A

    例子:$("p").addClass("another");添加样式表类another类到P

     

    3.移除样式

    • removeClass() 移除类

    4.切换样式

    • toggleClass() 切换clss属性类为新的类

    5.判断某个样式是否存在

    • hasClass()

    四.内容的操作

    • html() This method gets the content of the html element, such as: var var1=$("p").html();//Gets the content in the P element
    • text() gets or sets the content of an html element
    • val() gets the Value value of the element
    • children() gets all the child nodes of the html element
    • next() Gets the sibling nodes immediately after the html element
    • prev() gets the sibling nodes immediately before the html element
    • siblings() gets the sibling nodes immediately before and after the html element 

    5. CSS-DOM technology

    • css("attribute", "value") Set the value of a certain attribute of the element css, such as: $("p").css("color", "red");//Set the css attribute of P{ color:red;}
    Related labels:
    source:php.cn
    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template