新微赢技术网
标题:
请问这个代码怎么修改
[打印本页]
作者:
妈妈猪的一天
时间:
2010-1-11 04:30
标题:
请问这个代码怎么修改
<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框的数字
谁能教教我 谢谢啦!!!
作者:
Forever紫月
时间:
2010-1-11 04:30
id不建议重复 id重复了那怎么判断呢?
作者:
寻觅鼠
时间:
2010-1-11 04:30
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script language="javascript">
var $ = function(ID){return document.getElementById(ID);}
get = function(){
$('A1').value = $('A2').value = $('A3').value = $('A4').value = $('A5').value =$('A_value').value;
}
</script>
</head>
<body>
<form>
<p>●:A<input type="text" id="A_value" style=" height:20; width:20"/></p>
<p><input type="BUTTON" value="确定查看" onClick="get()" ></p>
<p>====================================================</p>
<p>①:A<input type="text" id="A1" style=" height:20; width:20"/></p>
<p>②:A<input type="text" id="A2" style=" height:20; width:20"/></p>
<p>③:A<input type="text" id="A3" style=" height:20; width:20"/></p>
<p>④:A<input type="text" id="A4" style=" height:20; width:20"/></p>
<p>⑤:A<input type="text" id="A5" style=" height:20; width:20"/></p>
</form>
</body>
</html> 本帖最近评分记录
zzzhhhyyy 积分 +3 好文章 2009-8-3 18:05 zzzhhhyyy 积分 +3 我很赞同 2009-8-3 18:05 zzzhhhyyy 积分 +3 我很赞同 2009-8-3 18:04 zzzhhhyyy 积分 +3 我很赞同 2009-8-3 18:04 zzzhhhyyy 积分 +3 我很赞同 2009-8-3 18:03
感到不爽,自个儿尝试相应工具解决了,并及时分享出来,是态度0!感到不爽,自个儿尝试找到解决方案了,并及时分享出来,是态度1!感到不爽,自个儿尝试修订代码搞定了,并及时分享出来,是态度2!感到不爽,自个儿未经尝试直接出来吼,期望行者来解决,是最不靠谱态度! 应该给出报酬!是也乎,是也乎... 2009-8-2 16:29:10
zzzhhhyyy
等 级:新手上路
帖 子:4
专家分:0
注 册:2009-7-31
第 4 楼 得分:0
非常感谢!!!!!!!!!!!!!!!!
欢迎光临 新微赢技术网 (http://bbs.weiying.cn/)
Powered by Discuz! X3.2