jQuery removeAttr() 方法
jQuery 教程
· 2019-03-27 17:29:05
实例
从所有的 <p> 元素移除样式属性:
$("button").click(function(){
$("p").removeAttr("style");
});
定义和用法
removeAttr() 方法从被选元素移除一个或多个属性。
语法
$(selector).removeAttr(attribute)
参数 | 描述 |
---|---|
attribute | 必需。规定要移除的一个或多个属性。如需移除若干个属性,请使用空格分隔属性名称。 |
点击查看所有 jQuery 教程 文章: https://www.codercto.com/courses/l/35.html
Pro JavaScript Design Patterns
Dustin Diaz、Ross Harmes / Apress / 2007-12-16 / USD 44.99
As a web developer, you’ll already know that JavaScript™ is a powerful language, allowing you to add an impressive array of dynamic functionality to otherwise static web sites. But there is more power......一起来看看 《Pro JavaScript Design Patterns》 这本书的介绍吧!