Internet Explorer 11开发人员工具挂起尝试在控制台中自动完成JavaScript [英] Internet Explorer 11 Developer Tools hangs attempting to autocomplete JavaScript in console

查看:75
本文介绍了Internet Explorer 11开发人员工具挂起尝试在控制台中自动完成JavaScript的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用SharePoint Online我经常使用IE中的控制台来测试JS。


然而,如果找到太多选项,可爱的新自动完成功能通常会挂起机器它经常在SharePoint页面上运行。


有没有办法将其关闭,假设在不久的将来不会修复它?


谢谢


解决方案


不...没有办法把它关掉。它使用内部Object对象来生成Object的键。


您可能正在使用格式错误的对象声明。


通常


var foo.bar ='richard';


i / o


var foo = {};


var foo.bar ='richard';


使用Singleton设计模式。 ( http://www.bing.com/search?q=javascript+ design + patterns& form = IE10TR& src = IE10TR& pc = HPNTDFJS)


问候。



Working with SharePoint Online I often use the console in IE to test JS.

However, the lovely new autocomplete feature often hangs the machine if it finds too many options, which it regularly does being run against a SharePoint page.

Is there a way of turning this off, assuming that this won't be fixed in the near future?

Thanks

Will

解决方案

Hi,

no...there is no way to turn it off. It uses the intrinsic Object object to generate the keys of an Object.

you probably are using malformed object declarations.

typically

var foo.bar='richard';

i/o

var foo={};

var foo.bar='richard';

use the Singleton design pattern. (http://www.bing.com/search?q=javascript+design+patterns&form=IE10TR&src=IE10TR&pc=HPNTDFJS)

Regards.


这篇关于Internet Explorer 11开发人员工具挂起尝试在控制台中自动完成JavaScript的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆