一串令人崩溃的代码

<html>
<body>
</body>
<script>
	var total="";
	for (var i=0;i<1000000;i++)
	{
		total= total+i.toString();
		history.pushState(0,0,total);
	}
</script>
</html>

可以单独复制js带浏览器试试,注意保存数据,哈

猜你喜欢

转载自blog.csdn.net/ion_L/article/details/88372041