jQuery 中有哪些操作属性的方法?
jQuery 附带了许多操作属性的方法。这些都是与 DOM 相关的办法。属性包括:
- text() - 此方法设置或返回选定元素的文本内容。
- html() - 此方法设置或返回选定元素的内容。
- val() - 此方法设置或返回表单字段的值。
你可以尝试运行以下代码,学习如何利用 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>
广告