如何设置网页的所有表单元素的样式(包括复选框,广播,文件等)
如果我需要使用jQuery插件,那么哪个最好?
答案 0 :(得分:2)
这样的东西(css)?
form input {
//your style rules here
}
如果你真的需要动态,你可以使用jQuery:
$('form input').css({ 'color' : 'red' });
或者也许:
$('form input').addClass('my-input');
<强>的CSS:强>
input.my-input {
// style rules here.
}
答案 1 :(得分:0)
$("form > *")
.css( { prop1: value1, prop2:value2 } );
// here propXXX= any css property like color/margin and valueXXX= any reasonable value for the property
答案 2 :(得分:0)
你可以使用jquery的.css()
..
$('#formId input').css({ 'color' : 'red' });