我的javascript中有一个'count'变量,每次添加新表单时都会递增。目前,我正在尝试这个:
count=1;
function newForm(){
...<input name=""check"+count" type="radio" value="Website" />...
}
但是,显然这不起作用。
答案 0 :(得分:0)
你不能在'(单引号)
中使用“你附上的引号”(双引号)将其更改为
<input name='"check'+count+'"' type="radio" value="Website" />