我想要做的是更改跨度的样式属性。我可以通过搜索一个类的子元素,但它并没有改变那个元素的样式。这是我的代码:
$(".cmbdiaclase > span").each(function ()
{
if($(this).attr("class") == "selectBox-label"){
$(this).style.width = "70px"; //no change style a element
}
});
我希望你能帮助我,谢谢。