Home  >  Article  >  Web Front-end  >  Batch modify label css style, taking input label as an example_jquery

Batch modify label css style, taking input label as an example_jquery

WBOY
WBOYOriginal
2016-05-16 16:40:431762browse
$("input[style]").each(function(){
        $(this).css("border-width","1");
        $(this).css("background-color","#A9A9A9");
    }); 
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn