• JQuery学习之操作DOM


    1.DOM,就是Document Object Model(文档对象模型)

    2.获得内容的方法:

    **text():设置或返回所选元素的文本内容

    $("#btn1").click(function{

      alert("Text: " +$("#test").test());

    });

    **html():设置或返回所选元素的内容(包括HTML标记)

    $("#btn2").click(function(){

      alert("HTML:" +$("#test").html());

    });

    **val():设置或返回表单字段的值

    $("#btn1").click(function(){

      alert("值为:"+ $("#test").val());

    });

    **attr():用于获取属性值

    $("button").click(function(){

      alert($("#runoob").attr("#href"));

    });

    3.设置内容和属性:

    **text():设置或返回所选元素的文本内容

    $("#btn1").click(function(){

      $("#test1").text("Hello world!");

    });

    **html():设置或返回所选元素的内容(包括HTML标记)

    $("#btn2").click(function{

      $("#test2").html("<b>Hello world!</b>");

    });

    **val():设置或返回表单字段的值

    $("#btn3").click(function{

      $("#test3").val("RUNOOB");

    });

    4.上面的三个jQuery方法:text(),html()以及val(),同样拥有回调函数;回调函数由两个参数:被元素列表中当前元素的下标,以及原始(旧的)值,然后以函数新值返回您希望使用的字符串;

    $("#btn1").click(function(){

      $("test1").text(function(){

        return "旧文本:"+origText+"新文本:Hello world!(index:"+i+")";

      });

    });

    5.设置属性:

    **attr():可以改变(设置)链接中href属性的值:

    $("button").click(function(){

      $("#runoob").attr("href","httf://www.runoob.com/jquery");

    });

    **attr()方法也允许同时设置多个属性:

    $("#button").click(function{

      $("#runoob").attr({

        "href":"http://www.runoob.com/jquery",

        "title":"jquery 教程"

      });

    });

    **attr()的回调函数:

    $("button").click(function(){

      $("#runoob").attr("href",function(i,origValue){

        return origValue+"/jquery";

      });

    });

    6.添加元素:

    **append():在被选元素的结尾插入内容

    $("p").append("追加文本");

    **prepend():在被选元素的开头插入内容

    $("p").prepend("在开头追加文本");

    **通过append()和prepend()方法添加若干新元素

    append()和prepend()方法能够通过参数接收无限数量的新元素

    function appendText(){

      var txt1="<p>文本。</p>";                   //使用HTML标签创建文本

      var txt2=$("<p></p>").text("文本。");        //使用Jquery创建文本

      var txt3=document.ctreateElement("p");

      txt3.innerHTML="文本。";                             //使用DOM创建文本         

      $("body").append(txt1,txt2,txt3);

    }

    **after():在被选元素之后插入内容

    $("img").after("在后面添加文本");

    **before():在被选元素之前插入内容

    $("img").before("在前面添加文本");

    **通过after()和before()方法添加若干新元素:

    after()和before()方法能够通过参数接收无限数量的新元素;

    function afterText(){

      var txt1="<b> I </b>";          //使用HTML创建元素

      var txt2=$("<i></i>").text("love ");        //使用jQuery创建元素

          var txt3=document.createElement("big");     //使用DOM创建元素

      txt3.innerHTML="jQuery! ";

      $("img").after(txt1,txt2,txt3);      //在图片后添加文本

    }

    7.删除元素:

    **remove():删除被选中元素(及其子元素)

    $("#div1").remove();

    **empty():从被选元素中删除子元素

    $("#div1").empty();

    **过滤被删除的元素:

    $("p").remove(".italic");      //删除class="italic"的所有<P>元素

  • 相关阅读:
    objective c 中基本类型的操作
    [转载]Server.MapPath和Request.MapPath()的用法
    [转载]mstsc远程报:这可能是由于CredSSP 加密Oracle修正的两种完美解决方法
    [转载]忘记token怎么加入k8s集群
    ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password' cannot be loaded; 的解决办法
    [转载]AutoMapper 9.0的改造
    [转载]k8s注册节点提示Docker SystemdCheck]: detected cgroupfs" as the Docker cgroup dr iver. The r ecommended dr fiver is" systemd"
    [转载]Linux的Vi命令详解
    [转载]查看虚拟机里的Centos7的IP
    [转载]centos关闭swap分区
  • 原文地址:https://www.cnblogs.com/hqutcy/p/5969539.html
Copyright © 2020-2023  润新知