嗨,我正在为 IE8 兼容模式调试我的页面,而这个脚本就是不喜欢工作和崩溃。
基本上它必须遍历一个 3D 数组,并为变量添加一个本地路径。好吧,否则我可以这样做,但我只是好奇为什么* * 它永远不会起作用...
欢迎任何建议:) 这是代码:
for(i=0;i<menu_items_p.length;i++)
for(j=0;j<menu_items_p[i].length;j++)
menu_items_p[i][j][1]='http://127.0.0.1/'+menu_items_p[i][j][1];
数组看起来像这样:
var menu_items_p =
[
[ //Products
['Health Care', 'products/health.php'],
['Aroma Therapy','products/scents.php'],
],
[ // Empty
],
[ //Test
['What ever', 'spirulina/about.php'],
]
]
但问题是它有时有空值,并且 array.length 会触发一些错误......