是否可以获得特定框架的浏览器开发工具?
如果我正在进行 Facebook 应用程序开发,我经常发现自己想要在嵌入页面的 iframe 中运行 JavaScript,这是相当麻烦的。如果有一种方法可以专门在该一帧上运行类似于 chrome 开发工具或 firebug 的东西,那也很好(尽管我的主要优先事项只是即时运行一些 javascript)。
我有在单帧中进行调试的选项吗?
If I'm doing Facebook application development I often find myself wanting run JavaScript in the iframe where my page is embedded, which is fairly cumbersome. It would also be nice (though my main priority is just being to on the fly run some javascript) if there was a way to run something similar to the chrome dev tools or firebug specifically on that one frame.
Do I have any options for debugging in a single frame?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Firebug 中,可以使用 cd() 函数。例如: cd(window.parent.frames[1])
In Firebug it's possible by using the cd() function. E.g.: cd(window.parent.frames[1])
我最终在 iframe 中为超级用户嵌入了 Firebug lite,我认为我应该首先这样做,以便我们的设计师可以获得一些有关 iPad 和其他东西的反馈。
我还注意到 chrome-dev 通道中有一个下拉菜单(或者我猜是在本例中为下拉菜单),用于指定您正在使用的框架,类似于 cd() 命令 styrr提及。
I ended up embedding Firebug lite inside of the iframe for superusers, which I think I should be doing in the first place so our designer can get some feedback on the iPad and things.
I also noticed that there is a dropdown (or I guess drop-up in this case) menu in the chrome-dev channel for specifying which frame you are working in, similar to the
cd()
command styrr mentioned.