imgcss[i].style.transform="rotate(" + j + ")"
首先 j是变量 双引号里面套单引号 还是字符串, 不是变量
其次 字符串拼接要写加号
var arr=["1.jpg","2.jpg","3.jpg","4.jpg".......]var oImg=Math.floor(Math.random()*arr.length) //随机图
img.src="./img/"+arr[oImg] //img元素得到img文件夹下面的某张图片
imgcss[i].style.transform="rotate(" + j + ")"
首先 j是变量 双引号里面套单引号 还是字符串, 不是变量
其次 字符串拼接要写加号
var arr=["1.jpg","2.jpg","3.jpg","4.jpg".......]var oImg=Math.floor(Math.random()*arr.length) //随机图
img.src="./img/"+arr[oImg] //img元素得到img文件夹下面的某张图片