jquery移除文章内容style属性

$(document).ready(function() {
    // 选择目标div,移除其中所有子元素的style属性
    $('.con-post').find('*').not('h3').removeAttr('style');
    
    // 给目标div本身添加新的样式
    $('.con-post').css({
        'line-height': '2.0',   // 设置行高为1.6
        'font-size': '16px',     // 设置字体大小为14px
        'text-indent': '2em'    // 段落首行缩进2个字符
    });
     // 给div内部的图片添加居中样式
    $('.con-post img').css({
        'padding':'20px',
        'display': 'block',     // 将图片设为块级元素
        'margin': '0 auto'      // 水平居中
    });
});

些代码功能是移除其中所有子元素的style属性, 并且给目标div本身添加新的样式

版权声明:
作者:鲤小牛
链接:https://www.yunweiba.com/181.html
来源:运维吧
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>