站长资源网络编程
批量修改标签css样式以input标签为例
简介$("input[style]").each(function());
$("input[style]").each(function(){
$(this).css("border-width","1");
$(this).css("background-color","#A9A9A9");
});
$("input[style]").each(function(){
$(this).css("border-width","1");
$(this).css("background-color","#A9A9A9");
});