Javascript 发生错误JSPlugin.3005
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/28301393/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
An error has ocurredJSPlugin.3005
提问by selvakumar
I installed IE11 on server 2008r2. I was trying to debug using IE11 and I am having the following error. The error I am having in the Dom Explorer tab is:
我在服务器 2008r2 上安装了 IE11。我试图使用 IE11 进行调试,但出现以下错误。我在 Dom Explorer 选项卡中遇到的错误是:
Diagnostic:
诊断:
Exception in window.onload: Error: An error has ocurredJSPlugin.3005
Exception in window.onload: Error: An error has ocurredJSPlugin.3005
Stack Trace:
堆栈跟踪:
Error: An error has ocurredJSPlugin.3005 at getString (res://C:\Program Files\Internet Explorer\F12Resources.dll/23/pluginhost/plugin.f12.js:5021:27) at ToolWindowHelpers.loadString (res://C:\Program Files\Internet Explorer\F12Resources.dll/23/Common/CommonMerged.js:5803:13) at TabPanes..
回答by Season714
Install the latest cumulative IE update :
安装最新的累积 IE 更新:
http://www.microsoft.com/en-us/download/details.aspx?id=45134(32 bit) http://www.microsoft.com/en-us/download/details.aspx?id=45154(64 bit)
http://www.microsoft.com/en-us/download/details.aspx?id=45134(32位) http://www.microsoft.com/en-us/download/details.aspx?id=45154(64位)
回答by selvakumar
I found the cause for this problem. I upgraded Internet explorer directly from IE8 to IE11. So I got the above said error during debugging.
Then I downgraded Internet explorer from IE11 to previous one(IE8). Then upgraded IE8 to IE10. Again upgraded IE10 to IE11. Now the debugger for IE11 is working fine.
我找到了这个问题的原因。我直接将 Internet Explorer 从 IE8 升级到 IE11。所以我在调试过程中遇到了上述错误。
然后我将 Internet Explorer 从 IE11 降级到以前的(IE8)。然后将IE8升级到IE10。再次将IE10升级到IE11。现在 IE11 的调试器工作正常。
回答by tucq88
Just a small update for Season714's answer if you're using Windows 7:
如果您使用的是 Windows 7,只需对 Season714 的答案进行一个小更新:
M$ did some magic things cause Windows 7 Updates take forever, so before you install those IE updates, you have to disable your network adapterfirst.
M$ 做了一些神奇的事情Windows 7 Updates take forever,所以在你安装那些 IE 更新之前,你必须先禁用你的网络适配器。
By doing that, that update installation will start in few seconds and the error will be fixed. But if you don't, Windows Update will run first and it would take forever to complete.
通过这样做,该更新安装将在几秒钟内开始,错误将得到修复。但是,如果您不这样做,Windows 更新将首先运行并且需要很长时间才能完成。
回答by Margus Pala
I had this problem in my Windows 7 freshly installed virtual machine.
我在新安装的 Windows 7 虚拟机中遇到了这个问题。
Apparently all of the updates were not installed immediately. I had to install Windows updates several times and restart also serveral times until all of the updates were installed and the issue went away.
显然所有更新都没有立即安装。我不得不多次安装 Windows 更新并重新启动几次,直到安装了所有更新并且问题消失了。
First update upgraded from IE8 to IE11. And after that I think it was 2 more updates to have it fixed.
第一次更新从 IE8 升级到 IE11。在那之后,我认为还有 2 个更新才能修复它。
回答by RO Nerio
write this in your code into tag like this:
在你的代码中把它写成这样的标签:
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
</head>
if someone have the same problem
如果有人有同样的问题

