0

这是我的 HTML 代码

 <input type="button" class="green red" value="Open"/>
    <input type="button" class="red yellow" value="Close"/>
    <input type="button" class="orange  red" value="Close"/>
  <input type="button" class="blue  red black" value="Close"/>

我想在加载页面时使用 JQuery 更改按钮的样式类。

要求:对于值为"Close"的按钮,样式类red 应替换为green

注意:我不能更改上面的代码,因为它是自动生成的。

您能否让我知道如何在使用 JQuery/Java 脚本加载页面时更改样式

4

1 回答 1

3

尝试

jQuery(function($){
    $('input.red:button[value="Close"]').removeClass('red').addClass('green')
})
于 2013-08-09T14:28:00.920 回答