Javascript while循环失败

时间:2013-09-24 07:25:01

标签: javascript

进入php页面我有20个文本框。我想使用javascript创建一个按钮,当用户点击它时,其余19个文本框将获取第一个文本框的文本。我做过类似的事情,但它不起作用......有什么想法吗?

function Throw_PhotoStuff(){
    var pcount=1; 
    while(pcount<20;){
      document.getElementById('photo_'+pcount).value = document.getElementById('photo_1').value; pcount++;
    }
}

2 个答案:

答案 0 :(得分:2)

从while循环中删除分号,如:

while(pcount<20;){  //will show SyntaxError: missing ) after condition

while(pcount<20){

答案 1 :(得分:0)

我认为你这里有额外的分号 的而(pcount&LT; 20;){

删除此