在jquery中,可以使用removeAttr()方法来删除元素的属性。removeAttr()方法可以从被选元素中移除属性。
语法
$(selector).removeAttr(attribute)
attribute参数:必需。规定从指定元素中移除的属性。
示例:从任何 p 元素中移除 id 属性:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("p").removeAttr("style"); }); }); </script> </head> <body> <h1>这是一个标题</h1> <p style="font-size:120color:red">这是一个段落。</p> <p style="font-weight:bold;color:blue">这是另一个段落。</p> <button>移除所有P元素的样式属性</button> </body> </html>
更多web前端知识,请查阅 HTML中文网 !!
以上就是jquery怎么删除元素的属性?的详细内容,更多请关注易知道|edz.cc其它相关文章!