请问这个代码怎么修改
<html><body>
<script language="javascript" type="text/javascript">
function go(){
var A=get('A');
var A_value=get('A_value');
A.value=A_value.value;
}
function get(str){
return document.getElementById(str);
}
</script>
<form>
<p>●:
A
<input type="text" id="A_value" style=" height:20; width:20"/>
</p>
<p>
<input type="BUTTON" value="确定查看" onClick="go()" >
</p>
<p>====================================================</p>
<p> ①:
A
<input type="text" id="A" style=" height:20; width:20"/>
</p>
<p>②:
A
<input type="text" id="A" style=" height:20; width:20"/>
</p>
<p>③:
A
<input type="text" id="A" style=" height:20; width:20"/>
</p>
<p>④:
A
<input type="text" id="A" style=" height:20; width:20"/>
</p>
<p>⑤:
A
<input type="text" id="A" style=" height:20; width:20"/>
</p>
</form>
</body>
</html>
*****************************************************************************
在●:A框填入“1”
点击(确定查看)
下面的①A框里就能显示“1”
问题是:①A框能显示;
②③④⑤A框都显示不了???
现在就是要①A框②A框③A框④A框⑤A框;都能显示填入●:A框的数字
谁能教教我 谢谢啦!!!