日期:2014-05-16 浏览次数:20897 次
<body>
<script type="text/jscript">
function t(){
len=document.getElementById("zs").value
for(var i=1; i<=len ; i++) {
document.getElementById("bb").value=document.getElementById("aa" + i).value
}
}
function tt(){
document.getElementById("bb").value=""
}
</script>
</head>
<% for i=1 to 5%>
<input name="aa<%=i%>" id="aa<%=i%>" type="text" value="test<%=i%>" onclick="t()" onblur="tt()" />
<%next%>
<input type="hidden" id="zs" value="<%=i%>">
<input name="bb" id="bb" />
</body>
<body>
<script type="text/jscript">
function t(t){
document.getElementById("bb").value= t.value
}
function tt(){
document.getElementById("bb").value=""
}
</script>
</head>
<% for i=1 to 5%>
<input name="aa<%=i%>" id="aa<%=i%>" type="text" value="test<%=i%>" onclick="t(this)" onblur="tt()" />
<%next%>
<input type="hidden" id="zs" value="<%=i%>">
<input name="bb" id="bb" />
</body>