IE7 JavaScript 命令行工具
我有 IE7 的 IE7 开发人员工具栏。它不允许您更改元素的样式,也没有 JS 命令行功能/控制台。 IE8 开发工具有一个 javascript 命令行。我需要使用 JS 命令行调试 IE7 中的某些内容。
有谁知道 IE7 扩展可以在运行时运行 JavaScript?我已经用尽谷歌寻找一些东西。
提前感谢您的帮助!
I have the IE7 Developer Toolbar for IE7. It doesn't allow you to change styles of elements nor does it have a JS command line feature/console. IE8 Developer Tools has a javascript command line. I need to debug something that is just in IE7 using a JS command line.
Does anyone know of an IE7 extension to run JavaScript during runtime? I have exhausted google looking for something.
Thanks for your help in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
发现 Firebug Lite 可以解决这个问题。
http://getfirebug.com/firebuglite
Found out that Firebug Lite will do the trick.
http://getfirebug.com/firebuglite
标准 IEDevToolbar 确实允许您更改样式。它是 DOM 和 CSS 窗格之间的接口。
对于 JS 命令控制台,我一直在使用 DebugBar ,但我对此并不完全满意。但它有效。
The standard IEDevToolbar does let you change styles. Its the interface bewtween the DOM and CSS panes.
For a JS command console Ive been using DebugBar which im not completely happy with. But it works.
我自己没有测试过,但你可以使用 IE8 并切换到 IE7 兼容性视图
Haven't tested this myself, but you can use IE8 and switch to IE7 Compatability View
转到 IE 开发人员工具并转到控制台选项卡。底部有一个框,您可以在其中运行 js,例如alert('hello world')。
Go to IE developer tools and go to console tab. down the bottom there is a box where you can run js like alert('hello world') for example.