response.write aa[0];
是asp组建,怎么可能输出js的数组呢?
我从新给你讲一下
数组的创建一般使用构造函数Array()
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>测试document.write</title>
</head>
<body>
<script language="javascript">
var TupleValue=new Array(); //创建一个名称为TupleValue的数组
TupleValue[0]="test1";
TupleValue[1]="test2";
TupleValue[2]="test3"
document.write(TupleValue[1]);//输出数组2
</script>
</body>
</html>
另外javascript不支持多维数组。本回答被提问者采纳