当前位置:Gxlcms > JavaScript > 批量修改标签css样式以input标签为例

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

时间:2021-07-01 10:21:17 帮助过:4人阅读

$("input[style]").each(function(){
        $(this).css("border-width","1");
        $(this).css("background-color","#A9A9A9");
    }); 

人气教程排行