var arr = ['Apple', 'Google', 'Microsoft'];var i, x;for (i=0; i<arr.length; i++) {x += arr[i]+'/n';} alert(x);我想在输出的时候,加个换行该怎么加啊,我上面这样不行。 查看完整描述