chrome浏览器加载页面时Uncaught Error: NO_MODIFICATION_ALLOWED_ERR: DOM Exception 7 错误

时间:2022-09-12 20:28:41

Uncaught Error: NO_MODIFICATION_ALLOWED_ERR: DOM Exception 7 错误.今天发现在chrome下 加载页面的时候用innerHTML或者innerText加载动态数据时会出现该错误.

在加载页面的时候自动执行了一个脚本. 该脚本里面有这么一段代码

document.getElementById(td3).innerText = (number1 + number2).toFixed(2);

在火狐下加载改页面没出现错误.但是在chrome下出现该错误

chrome浏览器加载页面时Uncaught Error: NO_MODIFICATION_ALLOWED_ERR: DOM Exception 7 错误

 

后面将JS脚本用jquery写,改问题解决.

$("#" + td3).text((number1 + number2).toFixed(2));