加载中...

删除数组变量


调试运行

<html>
<head>
<title>删除数组变量</title>
</head>
<body>
<script language="javascript">
<!--
	souce = new Array(85,72,98);
	document.write("souce[1]=",souce[1]);
	delete souce;
	document.write("souce[1]=",souce[1]);
//-->
</script>
</body>
</html>

还没有评论.