比如你想他最终的style为color:red的话
你直接写
$("#msg5 .syzx >span:first").attr("style",{"color":"red"})
如果完全不要就可以使用$("#msg5 .syzx >span:first").removeAttr("style")
或者写成$("#msg5 .syzx >span:first").attr("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","")
})
如果你想移除指定的样式的话你完全可以重新设置他的样式
比如你想他最终的style为color:red的话
你直接写
$("#msg5
.syzx
>
span:first").attr("style",{"color":"red"})
如果完全不要就可以使用$("#msg5
.syzx
>
span:first").removeattr("style")
或者写成$("#msg5
.syzx
>
span:first").attr("style",“”)