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本身添加新的样式