jQuery 中的 text() 和 html() 有什么区别?
jQuery 具有许多用于操纵属性的方法。这些是与 DOM 相关的函数。其中也包括 text( )和 html( )。
- text() – 该方法设置或返回所选择元素的文本内容。
- html() – 该方法设置或返回所选择元素的内容。
示例
你可以尝试运行以下代码来学习如何使用 text() 和 html() 方法操纵属性:
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("#button1").click(function(){ alert("Using text()- " + $("#demo").text()); }); $("#button2").click(function(){ alert("Using html()- " + $("#demo").html()); }); }); </script> </head> <body> <p id="demo">This is <b>demo</b> text.</p> <button id="button1">Text</button> <button id="button2">HTML</button> </body> </html>
广告