zl程序教程

您现在的位置是:首页 >  其他

当前栏目

批量修改标签css样式以input标签为例

批量CSS 修改 标签 样式 input 为例
2023-06-13 09:15:40 时间
$("input[style]").each(function(){
$(this).css("border-width","1");
$(this).css("background-color","#A9A9A9");
});