码迷,mamicode.com
首页 > Web开发 > 详细

使用JS动态修改网页body的背景色

时间:2017-10-06 18:36:07      阅读:321      评论:0      收藏:0      [点我收藏+]

标签:text   type   移除   cti   ant   范围   lis   简单   分网   

大部分网页默认的背景色为白色,个人感觉比较刺眼,于是写了个JS的脚本去改变body部分的背景色,代码如下:

// ==UserScript==
// @name        ChangeBackgroundColor
// @namespace   tingl
// @include     *
// @version     1
// @grant       none
// ==/UserScript==

(function () {
  ‘use strict‘;
 
  var color = ‘#ececec‘;
  var style;
 
  function createStyle() {
    style = document.createElement(‘style‘);
    style.type = ‘text/css‘;
    style.innerHTML = ‘body {background-color: ‘ + color + ‘ !important;}‘;
  }
 
  function changeBackgroundColor() {
    if(!style.parentNode) document.head.appendChild(style);
  }
  
  createStyle();
  changeBackgroundColor();
  document.head.addEventListener("DOMNodeRemoved",changeBackgroundColor);
}) ()

代码比较简单,直接创建了一个body上的css样式规则,然后添加到head里,如果网页内容变化或者异步更新等使样式被移除时,通过事件监听机制重新添加到head上。

由于只是简单地改变了body上的背景色,脚本的适用范围有限。

使用JS动态修改网页body的背景色

标签:text   type   移除   cti   ant   范围   lis   简单   分网   

原文地址:http://www.cnblogs.com/changshanfeilong/p/7631929.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!