首页 > 代码库 > JQuery:JQuery设置HTML

JQuery:JQuery设置HTML

JQuery:设置HTML
1、Query - 设置内容和属性
设置内容 - text()、html() 以及 val()
我们将使用前一章中的三个相同的方法来设置内容:
  text() - 设置或返回所选元素的文本内容
  html() - 设置或返回所选元素的内容(包括 HTML 标记)
  val() - 设置或返回表单字段的值
下面的例子演示如何通过 text()、html() 以及 val() 方法来设置内容:
实例1:
$("#btn1").click(function(){
  $("#test1").text("Hello world!");
});
  $("#btn2").click(function(){
  $("#test2").html("<b>Hello world!</b>");
});
  $("#btn3").click(function(){
  $("#test3").val("RUNOOB");
});
代码如下:

<!DOCTYPE html><html><head>    <meta charset="utf-8">    <title>JQuery的使用!!!</title>    <script src="jquery-3.1.0.js"></script>    <script>        $(function(){            //设置文本            $("#btn1").click(function(){                $("#test1").text("hello world!");            });            //设置HTML            $("#btn2").click(function(){                $("#test2").html("<i>hello world!</i>")            });            //设置Value            $("#btn3").click(function(){                $("#test3").val("hello world!");            });        });    </script></head><body>    <p id="test1">真是一个段落</p>    <p id="test2">这是另外一个段落</p>    <p>Input:<input type="text" value="这是文本框值" id="test3"></p>    <button id="btn1">设置文本</button>    <button id="btn2">设置HTML</button>    <button id="btn3">设置Value</button></body></html>

技术分享  技术分享

text()、html() 以及 val() 的回调函数
上面的三个 jQuery 方法:text()、html() 以及 val(),同样拥有回调函数。回调函数由两个参数:被选元素列表中当前元素的下标,以及原始(旧的)值。然后以函数新值返回您希望使用的字符串。
下面的例子演示带有回调函数的 text() 和 html():
实例2:
$("#btn1").click(function(){
  $("#test1").text(function(i,origText){
    return "旧文本: " + origText + " 新文本: Hello world! (index: " + i + ")";
  });
});
$("#btn2").click(function(){
  $("#test2").html(function(i,origText){
    return "旧 html: " + origText + " 新 html: Hello <b>world!</b> (index: " + i + ")";
  });
});
代码如下:

<!DOCTYPE html><html lang="zh-cn"><head>    <meta charset="utf-8">    <title>JQuery的使用!!!</title>    <script src="jquery-3.1.0.js"></script>    <script>        $(function(){            //显示新/旧文本            $("#btn1").click(function(){                $("#test1").text(function(i,origText){                    return "旧文本:"+ origText + "    新文本:Hello World!(index:" + i +")";                });            });            //显示新/旧HTML            $("#btn2").click(function(){                $("#test2").html(function(i,origText){                    return "旧HTML:"+ origText + "    <b>新HTML:Hello World!(index:" + i +")</b>";                });            });        });    </script></head><body>    <p id="test1">真是一个旧的段落</p>    <p id="test2">这是另外一个旧的段落</p>    <button id="btn1">显示新/旧文本</button>    <button id="btn2">显示新/旧HTML</button></body></html>

 

技术分享 技术分享

2、Query - 设置属性
jQuery attr() 方法也用于设置/改变属性值。
下面的例子演示如何改变(设置)链接中 href 属性的值:
实例1:
$("button").click(function(){
  $("#runoob").attr("href","http://www.runoob.com/jquery");
});
代码如下:
attr() 方法也允许您同时设置多个属性。
下面的例子演示如何同时设置 href 和 title 属性:
实例2:
$("button").click(function(){
  $("#runoob").attr({
    "href" : "http://www.runoob.com/jquery",
    "title" : "jQuery 教程"
  });
});
代码如下:

<!DOCTYPE html><html lang="zh-cn"><head>    <meta charset="utf-8">    <title>JQuery的使用!!!</title>    <script src="jquery-3.1.0.js"></script>    <script>        $(function(){            //显示新/旧文本            $("button").click(function(){                alert("更换前:"+$("#test").attr("href"));                $("#test").attr("href","https://github.com");                alert("更换后:"+$("#test").attr("href"));            });        });    </script></head><body>    <p><a href="http://www.baidu.com" id="test">链接</a></p>    <button>点击按钮更换href链接</button></body></html>

技术分享 技术分享

3、attr() 的回调函数
jQuery 方法 attr(),也提供回调函数。回调函数由两个参数:被选元素列表中当前元素的下标,以及原始(旧的)值。然后以函数新值返回您希望使用的字符串。
下面的例子演示带有回调函数的 attr() 方法:
实例1:
$("button").click(function(){
  $("#runoob").attr("href", function(i,origValue){
    return origValue + "/jquery";
  });
});
代码如下:

<!DOCTYPE html><html lang="zh-cn"><head>    <meta charset="utf-8">    <title>JQuery的使用!!!</title>    <script src="jquery-3.1.0.js"></script>    <script>        $(function(){            //显示新/旧文本            $("button").click(function(){                alert("更换前:"+$("#test").attr("href"));                $("#test").attr("href",function(i,orinHerf){                    return  orinHerf + "/xiayuanquan";                });                alert("更换后:"+$("#test").attr("href"));            });        });    </script></head><body>    <p><a href="http://www.baidu.com" id="test">链接</a></p>    <button>点击按钮更换href链接</button></body></html>

技术分享 技术分享

 

JQuery:JQuery设置HTML