$(".syzx > span:first").removeAttr("style");
你都用class去设置,然后removeclass就方便多了啊,这个你把样式固定死了,以后修改样式都麻烦
如果你想移除指定的样式的话 你完全可以重新设置他的样式
比如你想他最终的style为color:red的话
你直接写
$("#msg5 .syzx > span:first").attr("style",{"color":"red"});
如果完全不要就可以使用$("#msg5 .syzx > span:first").removeAttr("style");
或者写成$("#msg5 .syzx > span:first").attr("style",“”);
最后一种没用过,试试。