Firefox 扩展:toSource 无法与 Firebug.Console.log 一起使用
在 FF 4.0.1 上;并尝试开发我的第一个 FF 扩展。
需要找到用户右键单击的位置。从 MDN 来看,“gContextMenu.target”似乎包含该信息。
尝试执行以下操作,但没有显示任何内容:
让 targetClicked = gContextMenu.target;
Firebug.Console.log("targetClicked : " + targetClicked.toSource());
没有显示任何内容,其他 .log 语句工作正常。
想要使用 Venkman JS 调试器,但它与 4.0.1 不兼容。
有什么想法如何获取该信息吗?
On FF 4.0.1; and trying to develop my first FF extension.
Need to find where the user right clicked. From MDN it seems "gContextMenu.target" would have the information.
Trying to do the following and it doesn't show anything :
let targetClicked = gContextMenu.target;
Firebug.Console.log("targetClicked : " + targetClicked.toSource());
Nothing shows up, other .log statements are working correctly.
Wanted to use the Venkman JS Debugger, but its not compatible with 4.0.1.
Any ideas how to get that information ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
了解 gContextMenu.target 返回一个 DOM 对象,因此 .toString() 可以工作。
注意:.target 返回一个包装在 XrayWrapper 中的 DOM 对象。使用前使用 XPCNativeWrapper.unwrap() 对其进行解包。
哦,是的,将其包含在您的代码中,以便该对象可用:
Learned that gContextMenu.target returns a DOM object, hence .toString() would work.
Note : The .target returns a DOM object wrapped in a XrayWrapper. Use
XPCNativeWrapper.unwrap()
to unwrap it before use.oh yes, include this in your code so the object is available :
<script type="application/x-javascript" src="chrome://global/content/XPCNativeWrapper.js"/>