IE8开发者工具,一旦js有错误,点击确定进行调试的时候,开发者工具只在任务栏显示,一直点就会死机

JavaScript047

IE8开发者工具,一旦js有错误,点击确定进行调试的时候,开发者工具只在任务栏显示,一直点就会死机,第1张

调试之前先把 工具掉出来 然后选择脚本页

标记断点,启动调试

记住顺序不能错!如果还是出现卡死的情况,把ie恢复默认设置,禁用其他加载项,

朋友你非要用ie调试吗?FF,google ,都很好用而且不会出现这种情况,为什么不用呢?

<script type="text/javascript">

var aa = document.createElement("a")

aa.style.cursor ="pointer"

//aa.style.color="#ffba00"

aa.style.color="red"

aa.innerHTML ="xxxx"

document.appendChild(aa)

</script>

ie8下没有问题的

1. 在IE7或更早的版本上polyfill JSON.stringify。你可以使用JSON2或JSON3来polyfills。

<!doctype html>

<html xmlns:ng="">

<head>

<!--[if lte IE 7]>

<script src="/path/to/json2.js"></script>

<![endif]-->

</head>

<body>

...

</body>

</html>

2. 在连接处将id="ng-app"添加到根元素,使用ng-app属性

<!doctype html>

<html xmlns:ng="" id="ng-app" ng-app="optionalModuleName">

...

</html>

3. 你不能使用自定义的元素标记,像<ng:view>(使用属性版本<div ng-view>来代替),或

4. 如果你必需要用自定义元素标记,然后你必须采取以下步骤以确保IE8及之前版本都能用:

<!doctype html>

<html xmlns:ng="" id="ng-app" ng-app="optionalModuleName">

<head>

<!--[if lte IE 8]>

<script>

document.createElement('ng-include')

document.createElement('ng-pluralize')

document.createElement('ng-view')

// Optionally these for CSS

document.createElement('ng:include')

document.createElement('ng:pluralize')

document.createElement('ng:view')

</script>

<![endif]-->

</head>

<body>

...

</body>

</html>

5. 使用ng-style标记来替代style="{{ someCss }}"。后续的版本能够在Chrome和Firefox下工作但不能在IE版本<=11下工作(在撰写本文时的最新版本)。