我正在使用 aspx 和 C# 构建一些 Web 应用程序,并且我想在 java 脚本中创建一个 2D 字符串数组,但要使用我的 c# 代码中的数组对其进行初始化。我使用了 "<% ... %> 但它不起作用。我的代码是这样的:
iconColors = new String[,];
protected void Page_Load(object sender, EventArgs e)
{ // some code that filling the array
}
在 Java 脚本中:
<script>
var seatColor = "<%= iconColors %>";
for (.... i and j....) {// its a double loop
document.write("....."+iconColos[i,j]+"...");
}
</script>
再次,它不起作用。帮助某人?