Uncaught RangeError: Maximum call stack size exceeded 错误解决方法
在做前端开发时候遇到了“Uncaught RangeError: Maximum call stack size exceeded ”这个错误,这个错误一般是代码书写不规范引起的,当然这只是出现“Uncaught RangeError: Maximum call stack size exceeded”错误的其中一种情况。
比如下面的代码:
比如下面的代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Maximum call stack size exceeded test</title>
<script type="text/javascript">
//点击按钮方法(错误写法)
function onclick() {
//test
alert(1);
}
</script>
</head>
<body>
<input value="点击按钮测试" type="button" onclick="onclick()" />
</body>
</html>
修改函数名(把onclick 修改为onclick1 )即可,再次运行正常。