Greasemonkey:使用 GM_xmlhttpRequest 和 createContextualFragment 加载 url
我有以下 GreaseMonkey 脚本:
GM_xmlhttpRequest({
method: 'GET',
url: "http://www.testurl.com",
headers: {
'User-agent': 'Mozilla/4.0 (compatible) Greasemonkey/0.3',
},
onload: function(responseDetails) {
var tagString = responseDetails.responseText;
var range = document.createRange();
range.selectNode(document.body);
var documentFragment = range.createContextualFragment(tagString);
现在如何从 documentFragment 中提取内容? documentFragment.getElementById('')、document.body 等都返回未定义。
我怀疑这是由于 createContextualFragment 方法返回 XPCNativeWrapper 对象,但如何解决此问题以访问底层 DOM?
谢谢
I have the following GreaseMonkey Script:
GM_xmlhttpRequest({
method: 'GET',
url: "http://www.testurl.com",
headers: {
'User-agent': 'Mozilla/4.0 (compatible) Greasemonkey/0.3',
},
onload: function(responseDetails) {
var tagString = responseDetails.responseText;
var range = document.createRange();
range.selectNode(document.body);
var documentFragment = range.createContextualFragment(tagString);
How do I now extract stuff from documentFragment? documentFragment.getElementById(''), document.body etc all returns undefined.
I suspect this is due to the createContextualFragment method returning a XPCNativeWrapper object, but how do I work around this to access the underlying DOM?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不确定用greasemonkey加载和解析远程url是否回答了这个问题
根据你想要做什么,包含 jquery 可能会更容易。
Not sure if this is answered by Load and parse remote url with greasemonkey
Depending what you want to do, might be easier to include jquery..
这是使用 wrappedJSObject 完成的:
This is done using wrappedJSObject: