如何在循环中生成id, 目前我有这样的事情,但没有奏效:
for(var i=1;i<10;i++)
$("#input-themen-word'+i+'").fileinput({
....
});
最后它应该生成ID:
#输入themen-WORD1
#输入themen-WORD2
#输入themen-WORD3
#输入themen-word4
#输入themen-的word5 ....
答案 0 :(得分:2)
应该是这样的:
$(("#input-themen-word" + i)).fileinput({
您试图将'
与"
...