zoukankan      html  css  js  c++  java
  • greasemonkey修改网页内指定函数

     1 greasemonkey replace function?
     2 
     3 方法1:编写GM代码
     4 
     5 
     6 alert("hello2");
     7 
     8 var mydiv =document.getElementById("myDIV");
     9 mydiv.innerHTML="Replaced!!";
    10 window.func =null;
    11 
    12 方法二:编写inject代码
    13 
    14 alert("hello2");
    15 
    16 function embed() {
    17     window.func = null;
    18   
    19     var mydiv =document.getElementById("myDIV");
    20     mydiv.innerHTML="Replaced!!";
    21 }
    22 
    23 
    24 var script = document.createElement('script'); 
    25 script.type = "text/javascript"; 
    26 script.innerHTML = "(" + embed + ")()";
    27 document.getElementsByTagName('head')[0].appendChild(script);
    View Code
  • 相关阅读:
    Constructor构造方法
    overload重载
    static关键字
    this关键字
    继承
    ORACLE数据库 常用命令和Sql常用语句
    常见单词
    L贪心基础
    J贪心
    K贪心
  • 原文地址:https://www.cnblogs.com/cutepig/p/4130124.html
Copyright © 2011-2022 走看看