| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 340 人关注过本帖
标题:“aspic”老师再请教
只看楼主 加入收藏
zzzhhhyyy
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2009-7-31
结帖率:100%
收藏
已结贴  问题点数:100 回复次数:3 
“aspic”老师再请教
<html>
<head>


<script language="javascript">
var A =function(ID)
{return document.getElementById(ID);}
get =function(){
   A('A1').value = A('A2').value = A('A3').value = A('A4').value = A('A5').value =A('A_value').value;
}
   
</script>
</head>




<body>
<form>
    <p>●:A<input type="text" id="A_value" style=" height:20; width:20"/>
          B<input type="text" id="B_value" style=" height:20; width:20"/>                              

                                                                   </p>
    <p><input type="BUTTON" value="确定查看" onClick="get()" ></p>
    <p>====================================================</p>
     <form>
        <p>
         ①:A<input type="text" id="A1" style=" height:20; width:20"/>
            B<input type="text" id="B1" style=" height:20; width:20"/></p>
      <p>②:A<input type="text" id="A2" style=" height:20; width:20"/>
            B<input type="text" id="B2" style=" height:20; width:20"/></p>
      <p>③:A<input type="text" id="A3" style=" height:20; width:20"/>
            B<input type="text" id="B3" style=" height:20; width:20"/></p>
      <p>④:A<input type="text" id="A4" style=" height:20; width:20"/>
            B<input type="text" id="B4" style=" height:20; width:20"/></p>
      <p>⑤:A<input type="text" id="A5" style=" height:20; width:20"/>
            B<input type="text" id="B5" style=" height:20; width:20"/></p>
</form>
</body>
</html>
*****************************************************************************
aspic老师:
      感谢你的指导
          在●:A框填入“1”
点击(确定查看)
下面的①A框里就能显示“1”
           ①A框能显示;
        ②③④⑤A框都能显示了。
                          还有个问题
                              在●:B框怎么表达
                                   (我还要做很多个“CDEFG......”)      
                                             (怎样才能类推)
      


谢谢啦!!!
搜索更多相关主题的帖子: aspic 老师 
2009-08-03 20:19
aspic
Rank: 17Rank: 17Rank: 17Rank: 17Rank: 17
等 级:贵宾
威 望:51
帖 子:2258
专家分:8050
注 册:2008-2-18
收藏
得分:0 
A('A1').value = A('A2').value = A('A3').value = A('A4').value = A('A5').value =A('A_value').value;
A('B1').value = A('B2').value = A('B3').value = A('B4').value = A('B5').value =A('B_value').value;
全部填上去 如果都是同值的话 只是改变一个名称而已 名称就是为了让它能认出谁是谁

[[it] 本帖最后由 aspic 于 2009-8-4 08:42 编辑 [/it]]
2009-08-04 08:39
aspic
Rank: 17Rank: 17Rank: 17Rank: 17Rank: 17
等 级:贵宾
威 望:51
帖 子:2258
专家分:8050
注 册:2008-2-18
收藏
得分:100 
程序代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www. xmlns="http://www. http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script language="javascript">
var $ = function(obj) {return document.getElementById(obj);}
function setValue() {
    var A = $('A').value;
    var B = $('B').value;
    //var C = $('C').value;
    //for循环 依次赋值
    for(var i = 1; i<=5; i++) {
        $('A'+i).value = A;
        $('B'+i).value = B;
        //还有其他CDEFG照样丢下来
        //$('C'+i).value = C;
    }
}
</script>
</head>

<body>
<form id="form">
    <p>A<input type="text" id="A" style=" height:20; width:20"/>B<input type="text" id="B" style="height:20; width:20"/><input type="button" onclick="setValue()" value="点击查看" /></p>
    <p>①:A<input type="text" id="A1" style=" height:20; width:20"/>B<input type="text" id="B1" style=" height:20; width:20"/></p>
    <p>②:A<input type="text" id="A2" style=" height:20; width:20"/>B<input type="text" id="B2" style=" height:20; width:20"/></p>
    <p>③:A<input type="text" id="A3" style=" height:20; width:20"/>B<input type="text" id="B3" style=" height:20; width:20"/></p>
    <p>④:A<input type="text" id="A4" style=" height:20; width:20"/>B<input type="text" id="B4" style=" height:20; width:20"/></p>
    <p>⑤:A<input type="text" id="A5" style=" height:20; width:20"/>B<input type="text" id="B5" style=" height:20; width:20"/></p>
</form>
</body>
</html>
2009-08-04 08:50
zzzhhhyyy
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2009-7-31
收藏
得分:0 
aspic老师感谢你的指导!!!
2009-08-04 13:32
快速回复:“aspic”老师再请教
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017951 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved