比如你想他最终的style为color:red的话
你直接写
$("#msg5 .syzx >span:first").attr("style",{"color":"red"})
如果完全不要就可以使用$("#msg5 .syzx >span:first").removeAttr("style")
或者写成$("#msg5 .syzx >span:first").attr("style",“”)
使用jQuery去掉标签属性style即可。如:<p style="color:red">kdjfdkddk</ p>
$("p").removeAttr("style")
1.样式为class名例:<div class="a" id="box"></div>
$(function(){
$("#box").removeClass("a")//根据id找到对应元素,然后删除你要删除的class名即可
})
2.直接删除样式
例: <div id="box" style="width:100px"></div>
$(function(){
$("#box").attr("style","")
})