w3school h1 color to red

w3school html dom header color change to red

  1. // ==UserScript==
  2. // @name w3school h1 color to red
  3. // @namespace https://github.com/royaso/w3school_userscript
  4. // @version 0.1
  5. // @description w3school html dom header color change to red
  6. // @author royaso
  7. // @match http://www.w3school.com.cn/htmldom/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Your code here...
  15. var maincontent=document.getElementById('maincontent');
  16. var header1=maincontent.getElementsByTagName('h1')[0];
  17. header1.style.color='pink';
  18.  
  19.  
  20. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址