有没有人能说出这条线出了什么问题?
var jquery = "jquery="+base+":nth-child("+index")";
我尝试过“and”的不同组合,但都不起作用。
发布于 2017-07-18 14:06:01
索引后缺少'+‘符号;请尝试
var jquery = "jquery="+base+":nth-child("+index+")";
https://stackoverflow.com/questions/45158688
相似问题