jQuery 设置内容与属性

设置内容 - text(), html(), and val()

我们将使用上一页中相同的 3 种方法 设置内容:

  • text() - 设置或返回选定元素的文本内容
  • html() - 设置或返回选定元素的内容(包括 HTML 标记)
  • val() - 设置或返回表单字段的值

下面的实例演示如何使用 jQuery text(), html(), 和 val() 方法设置内容:

实例
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("#btn1").click(function(){
  8. $("#test1").text("Hello world!");
  9. });
  10. $("#btn2").click(function(){
  11. $("#test2").html("<b>Hello world!</b>");
  12. });
  13. $("#btn3").click(function(){
  14. $("#test3").val("Dolly Duck");
  15. });
  16. });
  17. </script>
  18. </head>
  19. <body>
  20. <p id="test1">这是一个段落</p>
  21. <p id="test2">这是另一个段落</p>
  22. <p>输入字段: <input type="text" id="test3" value="Mickey Mouse"></p>
  23. <button id="btn1">设置文本</button>
  24. <button id="btn2">设置 HTML</button>
  25. <button id="btn3">设置值</button>
  26. </body>
  27. </html>

text(), html(), 和 val() 的回调函数

上述 3 种 jQuery 方法:text(), html(), 和 val() 也都带有回调函数。回调函数有两个参数:所选元素列表中当前元素的索引和原始(旧)值。然后返回用作函数新值的字符串。

下面实例演示带回调的 text()html():

实例
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("#btn1").click(function(){
  8. $("#test1").text(function(i, origText){
  9. return "旧文本: " + origText + " 新文本: Hello world! (index: " + i + ")";
  10. });
  11. });
  12. $("#btn2").click(function(){
  13. $("#test2").html(function(i, origText){
  14. return "旧 html: " + origText + " 新 html: Hello <b>world!</b> (index: " + i + ")";
  15. });
  16. });
  17. });
  18. </script>
  19. </head>
  20. <body>
  21. <p id="test1">这是一个 <b>加粗</b> 段落</p>
  22. <p id="test2">这是另一个 <b>加粗</b> 段落</p>
  23. <button id="btn1">显示旧/新文本</button>
  24. <button id="btn2">显示旧/新 HTML</button>
  25. </body>
  26. </html>

设置属性 - attr()

jQuery attr() 方法还用于设置/更改属性值。

下面的实例演示如何更改(设置)链接中 href 属性的值:

实例
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("button").click(function(){
  8. $("#ms").attr("href", "https://cankaoshouce.com/jquery/jquery-course.html");
  9. });
  10. });
  11. </script>
  12. </head>
  13. <body>
  14. <p><a href="https://cankaoshouce.com" id="ms">cankaoshouce.com</a></p>
  15. <button>修改 href 值</button>
  16. <p>将鼠标移到链接上(或单击链接),查看 href 属性的值是否已更改。</p>
  17. </body>
  18. </html>

attr() 方法还让您可以同时设置多个属性。

下面的实例演示如何同时设置 href 和 title 属性:

实例
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("button").click(function(){
  8. $("#ms").attr({
  9. "href" : "https://cankaoshouce.com/jquery/jquery-course.html",
  10. "title" : "jQuery 教程"
  11. });
  12. });
  13. });
  14. </script>
  15. </head>
  16. <body>
  17. <p><a href="https://cankaoshouce.com" title="some title" id="ms">cankaoshouce.com</a></p>
  18. <button>修改 href 与 title</button>
  19. <p>将鼠标悬停在链接上,查看 href 属性是否已更改,是否设置了 title 属性。</p>
  20. </body>
  21. </html>

attr() 的回调函数

jQuery attr() 方法,还附带了一个回调函数。回调函数有两个参数:选定元素列表中当前元素的索引和原始(旧)属性值。然后从函数中返回用作新属性值的字符串。

下面的实例演示了 attr() 和回调函数:

实例
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("button").click(function(){
  8. $("#ms").attr("href", function(i, origValue){
  9. return origValue + "/jquery/";
  10. });
  11. });
  12. });
  13. </script>
  14. </head>
  15. <body>
  16. <p><a href="https://cankaoshouce.com" id="ms">cankaoshouce.com</a></p>
  17. <button>修改 href 值</button>
  18. <p>将鼠标移到链接上(或单击链接),查看 href 属性的值是否已更改。</p>
  19. </body>
  20. </html>

jQuery HTML 参考

有关所有 jQuery HTML 方法的完整概述,请访问本站的 jQuery HTML/CSS 参考