[jQuery]jQuery用removeAttr移除指定样式
[jQuery]jQuery用removeAttr移除指定样式
removeAttr移除行内样式:
- <div id="demo" style="width:400px; font-size:22px;"></div>
- $("#demo").removeAttr("style");
- <html>
- <head>
- <script type="text/javascript" src="/jquery/jquery.js"></script>
- <script type="text/javascript">
- $(document).ready(function(){
- $("button").click(function(){
- $("p").removeAttr("style");
- });
- });
- </script>
- </head>
- <body>
- <h1>这是一个标题</h1>
- <p style="font-size:120%;color:red">这是一个段落。</p>
- <p>这是另一个段落。</p>
- <button>删除所有 p 元素的 style 属性</button>
- </body>
- </html>
热门文章推荐
- [jQuery]基于jQuery的插件开发倒计时countdown
- [jQuery]jquery实现css的display(显示隐藏)源代码实例
- 酷播视频LightBOX弹窗特效(基于极酷阳光V2.5播放器)
- [jQuery]通过jQuery来获取用户端屏幕宽高
- [jQuery]jquery读cookie源代码
- [jQuery]jquery选择器用法实例
- [JQuery]Ajax异步检查用户名是否存在
- [jQuery]jquery使用each循环时使用continue和break
请稍候...