$('input[type]').css('background','pink') This is to change an attribute, if you want to add width and height. How to write it?
景安服务器、VPS特价。 免费赠送pos机!
You can use the attr attribute in jQuery to change multiple style values
$("input[type]").attr({width:"100px",height:"100px",background:"pink"});
You can use the attr attribute in jQuery to change multiple style values