我的脚本如下: 我想要包含索引值,如下所示。我怎样才能做到这一点?使用我的实际代码,我有错误
for(var index = 1; index < 6; index++){
$("#myTable thead td:nth-child(index + 2).html("here");
}
答案 0 :(得分:0)
你可以这样做:
for(var index = 1; index < 6; index++){
var nthchild = index+2;
$("#myTable thead td:nth-child("+nthchild+")").html(index);
}
答案 1 :(得分:0)
连接字符串,并对语法错误进行排序:
for(var index = 1; index < 6; index++)
{
$("#myTable thead td:nth-child(" + (index+2) + ")").html('here');
}
答案 2 :(得分:0)
你必须写:
for(var index = 1; index < 6; index++) {
$("#myTable thead td:nth-child("+(index+2)+")").html("here");
}