先看清楚怎么拼接的,拿pHtml这个来说
pHtml=+='.pic li:nth-child('+(i+1)+') span{background-position:'+(-wHtml*i+'px')+'未完
其中你说的不能那么看 应该是 .pic li:nth-child( 加上后面的(i+1)再加上后面的,举个类似的例子
for(var i=1;i<7;i++){
document.write("hello world! ")
}
上面就是输出h1到h6不同标签下的hello world! 里面i不能看成“+i+”而是要结合前面的来看,现在理解没???