javascript使用window.open提示“已经计划系统关机”的原因
作者:bea
javascript调用window.open打开网站的时候,IE浏览器下报错:已经计划系统关机,提示如图: 百度找了下都是莫名其妙的自动好了,可以查看这个帖子:诡异的JS,已经计划系统关机错误。 于是改用谷歌搜索相关英文内容,serverfault.com上也有人碰到过这个问题,满意答案还比较靠谱:IE8 script error 800704a6? 代码如下: The only information I've been able to find on this
javascript调用window.open打开网站的时候,IE浏览器下报错:已经计划系统关机,提示如图:
百度找了下都是莫名其妙的自动好了,可以查看这个帖子:诡异的JS,已经计划系统关机错误。
于是改用谷歌搜索相关英文内容,serverfault.com上也有人碰到过这个问题,满意答案还比较靠谱:IE8 script error 800704a6?
代码如下:
The only information I've been able to find on this error is from
Josh Poley's MSDN blog.(这篇msdn上的文章已经不存在)
1190 0x800704A6 A system shutdown has already been scheduled. ERROR_SHUTDOWN_IS_SCHEDULED
However, the message implies that you get this when trying to schedule a shutdown. The only thing I can think of is that an installation/Windows update is waiting for a reboot.
You say that you can't see updates in Add/Remove programs - have you checked the "Show updates" option is checked?
Other posts that mention this error are similar in nature to yours.
主要说的是系统更新或者安装过相关的软件或者补丁,需要重启动后才能生效。所以上面那篇csdn的这个错误也是解决得莫名其妙了,应该是重启过电脑。
有用 | 无用
百度找了下都是莫名其妙的自动好了,可以查看这个帖子:诡异的JS,已经计划系统关机错误。
于是改用谷歌搜索相关英文内容,serverfault.com上也有人碰到过这个问题,满意答案还比较靠谱:IE8 script error 800704a6?
代码如下:
The only information I've been able to find on this error is from
Josh Poley's MSDN blog.(这篇msdn上的文章已经不存在)
1190 0x800704A6 A system shutdown has already been scheduled. ERROR_SHUTDOWN_IS_SCHEDULED
However, the message implies that you get this when trying to schedule a shutdown. The only thing I can think of is that an installation/Windows update is waiting for a reboot.
You say that you can't see updates in Add/Remove programs - have you checked the "Show updates" option is checked?
Other posts that mention this error are similar in nature to yours.
主要说的是系统更新或者安装过相关的软件或者补丁,需要重启动后才能生效。所以上面那篇csdn的这个错误也是解决得莫名其妙了,应该是重启过电脑。
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- JQuery EasyUI 加载两次url的原因分析及解决方案
- javascript ajax的5种状态介绍
- jquery操作HTML5 的data-*的用法实例分享
- js判断浏览器是否支持html5
- 一段非常简单的js判断浏览器的内核
- JavaScript继承基础讲解(原型链、借用构造函数、混合模式、原型式继承、寄生式继承、寄生组合式继承)
- JS面向对象基础讲解(工厂模式、构造函数模式、原型模式、混合模式、动态原型模式)
- Node.js安装教程和NPM包管理器使用详解
- Node.js中的事件驱动编程详解
- Node.js文件操作详解
- Node.js中使用Buffer编码、解码二进制数据详解
- Node.js中创建和管理外部进程详解
- Node.js模块加载详解
- JS遍历Json字符串中键值对先转成JSON对象再遍历
- 手机端网页点击链接触发自动拨打或保存电话的示例代码
- Node.js中使用事件发射器模式实现事件绑定详解
- Node.js中使用计时器定时执行函数详解
- javascript中实现兼容JAVA的hashCode算法代码分享
- javascript实现锁定网页、密码解锁效果(类似系统屏幕保护效果)