直接用jquery的属性来控制
$(".test").attr("style","height:20px;backgrdoun:blue");
$('#xxx').css(‘height’,'20px');
或者把这个改一下:
return "{'height':'20px'}"; $('#xxx').css({ "background-color": "yellow", "font-weight": "bolder" });
这儿有css的各种用法,相当的详细。
不可以啊,哥们!
@nobody1: 不可能不行,我以前都这么用的,都用了两年了。看这知道了。http://api.jquery.com/css/
根据你提供的信息,你是想直接通过接收GetCss()的参数来给jQuery对象设置样式。因此可以将GetCss方法改为:
var GetCss =function() { return {"height":"20px"} }
即可。此处返回的值是json对象,而jQuery的css方法也接收json对象。如果想在GetCss方法中添加更多的css样式属性,可
var GetCss =function() { return {"height":"20px","width":"40px"} }
即可达到你想要的效果,注意json对象中每组属性间要以逗号分隔。
请采纳
改成这样就可以了
var GetCss = function () {
return {'height':'50px','color':'red','background':'blue'};
}