0

进入一个 php 页面,我有 20 个文本框。我想使用 javascript 制作一个按钮,当用户单击它时,其余 19 个文本框将获取第一个文本框的文本。我做了这样的事情,但它不工作......知道吗?

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

2 回答 2

2

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

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

while(pcount<20){
于 2013-09-24T07:27:55.323 回答
0

我想你这里有多余的分号 while(pcount<20;){

删除这个

于 2013-09-24T07:29:52.953 回答