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

greasemonkey修改网页内指定函数

时间:2014-11-29 10:14:02      阅读:361      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   java   

bubuko.com,布布扣
 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

 

greasemonkey修改网页内指定函数

标签:style   blog   http   io   ar   color   os   sp   java   

原文地址:http://www.cnblogs.com/cutepig/p/4130124.html

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