GreaseMonkey 有关 getElementsByClassName 的帮助
我是 GM 的新手,正在尝试编写我的第一个用户脚本。我正在尝试从我试图使用它的 Facebook 评论中获取 URL。
var e = Array.filter( document.getElementsByClassName('UIStoryAttachment_Title'), function(elem) {
return elem.nodeName == 'A';
}
);
但每次我似乎打开一个空白页面时,对此的任何帮助都会很棒
I am new to GM and trying to write my first user script. I am trying to get a URL from a facebook comment I was trying to use this.
var e = Array.filter( document.getElementsByClassName('UIStoryAttachment_Title'), function(elem) {
return elem.nodeName == 'A';
}
);
But each time I seem to open up a blank page any help on this would be great
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想你想做:
I think you want to do: