这就是我所拥有的:
$("#list .active").closest('.header').css({
'background-color' : '#1a2e51',
'background-image' : '-webkit-gradient(linear, left top, left bottom, from(#2c3c6f), to(#071f31))',
'background-image' : '-webkit-linear-gradient(top, #2c3c6f, #071f31)',
'background-image' : '-moz-linear-gradient(top, #2c3c6f, #071f31)',
'background-image' : '-o-linear-gradient(top, #2c3c6f, #071f31)',
'background-image' : 'linear-gradient(to bottom, #2c3c6f, #071f31)'
});
在线示例:http: //jsfiddle.net/qSfvK/
但是,它不会向我显示渐变,因为我在 jQuery 中没有很好地编写它,那么该怎么做呢?
编辑
我可以使它在 CSS 中工作,但不能在 jquery 中工作,通过查看此链接了解我的意思:http:
//jsfiddle.net/qSfvK/10/