是否有一个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>
问候