0

是否有一个 javascript/jQuery 函数可以重新定义标准 css 颜色名称?(您可以简单地复制/粘贴到您的项目中。)

例子:

<div id="example"></div>

<style>

#example { background: red; }

</style>

<script>

if(true) {
    function redefineColor () {
    var backgroundColor = $("*").css("background");   //select all elements

    if( backgroundColor == "#FF0000" ) {              //red color.
      $(this).css("background","#DC143C");              //other shade of red.
    } else { return false}
    redefineColor();
}
</script>

问候

4

0 回答 0