从包含HTML标记的字符串设置元素的Style属性

时间:2014-12-18 04:26:33

标签: javascript jquery css

我有一个包含buttonlispan等元素的HTML字符串。

我想根据类名将一些样式应用于按钮。

ex:if

button.btn {
   some styles
} 

button.btn-success {
    some other styles
}

添加样式后,我必须将此html字符串添加到body。我怎么能在Jquery中做到这一点。请帮帮我。

先谢谢。

1 个答案:

答案 0 :(得分:0)

尝试这样:

$('button').each(function(){
    if($(this).hasClass("btn")){

    // add style here
    }

    if($(this).hasClass("btn-success")){

    // add style here
    }
});