js实现获取值传到input里边

简介:

   
   
<! 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 > Document </ title >
< style >

</ style >
< script >
function checkAll(e, itemName, thisValue){
var target = document.getElementById( ' arrayid ' );
var targetValue = target.value;
var inputs = document.getElementsByName(itemName);
if (e.checked == true ) {
targetValue
+= thisValue + ' , ' ;
}
else {
targetValue
= targetValue.replace(thisValue + ' , ' , '' );
}
target.value
= targetValue;
for ( var i = 0 ; i < inputs.length; i ++ ){
inputs[i].checked
= e.checked;
}
}
</ script >
</ head >
< body >
< form >
< p >
< input type ="checkbox" value ="1001" name ="1001" id ="1001" onclick ="checkAll(this, 'mk1001', '1001')" >
< label for ="1001" > 复选1 </ label >
< input name ="mk1001" type ="checkbox" id ="mk1001" value ="1" />
< input name ="mk1001" type ="checkbox" id ="mk1002" value ="2" />
< input name ="mk1001" type ="checkbox" id ="mk1003" value ="3" />
< input name ="mk1001" type ="checkbox" id ="mk1004" value ="4" />
< input name ="mk1001" type ="checkbox" id ="mk1005" value ="5" />
</ p >
< p >
< input type ="checkbox" value ="1002" name ="1002" id ="1002" onclick ="checkAll(this, 'mk1002', '1002')" >
< label for ="1002" > 复选2 </ label >
< input name ="mk1002" type ="checkbox" id ="mk1001" value ="6" />
< input name ="mk1002" type ="checkbox" id ="mk1002" value ="7" />
< input name ="mk1002" type ="checkbox" id ="mk1003" value ="8" />
< input name ="mk1002" type ="checkbox" id ="mk1004" value ="9" />
< input name ="mk1002" type ="checkbox" id ="mk1005" value ="10" />
</ p >
< p >
< input type ="checkbox" value ="1003" name ="1003" id ="1003" onclick ="checkAll(this, 'mk1003', '1003')" >
< label for ="1003" > 复选3 </ label >
< input name ="mk1003" type ="checkbox" id ="mk1001" value ="11" />
< input name ="mk1003" type ="checkbox" id ="mk1002" value ="12" />
< input name ="mk1003" type ="checkbox" id ="mk1003" value ="13" />
< input name ="mk1003" type ="checkbox" id ="mk1004" value ="14" />
< input name ="mk1003" type ="checkbox" id ="mk1005" value ="15" />
</ p >
< p >
< input type ="checkbox" value ="1004" name ="1004" id ="1004" onclick ="checkAll(this, 'mk1004', '1004')" >
< label for ="1004" > 复选4 </ label >
< input name ="mk1004" type ="checkbox" id ="mk1001" value ="11" />
< input name ="mk1004" type ="checkbox" id ="mk1002" value ="12" />
< input name ="mk1004" type ="checkbox" id ="mk1003" value ="13" />
< input name ="mk1004" type ="checkbox" id ="mk1004" value ="14" />
< input name ="mk1004" type ="checkbox" id ="mk1005" value ="15" />
</ p >
< p >
请把复选1,2,3的值传到以下的框中,中间以,号分隔
</ p >
< p >
< input type ="text" id ="arrayid" />
</ p >
</ form >
</ body >
</ html >
复制代码
用js实现获取值传到input里边。






本文转自豪情博客园博客,原文链接:http://www.cnblogs.com/jikey/archive/2009/12/15/1624669.html,如需转载请自行联系原作者



目录
相关文章
|
JavaScript
js通过input框输入属性和值,改变div的属性
js通过input框输入属性和值,改变div的属性
182 0
|
JavaScript 前端开发
JavaScript实现input框获取系统默认年月日时分秒
JavaScript实现input框获取系统默认年月日时分秒
359 0
|
JavaScript 前端开发
JS如何配合input框实现模糊搜索
JS如何配合input框实现模糊搜索
337 2
|
JSON JavaScript 前端开发
使用js实现input框的模糊搜索
使用js实现input框的模糊搜索
92 0
|
JavaScript
【干货】JS 限制input文本框输入
【干货】JS 限制input文本框输入
|
移动开发 JavaScript HTML5
input | pattern | oninvalid | setCustomValidity | html5原生js表单校验
input | pattern | oninvalid | setCustomValidity | html5原生js表单校验
152 0
|
JavaScript 前端开发
js的input标签上传图片并转为base64预览
js的input标签上传图片并转为base64预览
244 0
|
JavaScript 算法
JS中如何对<input type=“data“>中值进行运算(JS日期类型如何进行加减)
JS中如何对<input type=“data“>中值进行运算(JS日期类型如何进行加减)
111 0
|
JavaScript 小程序
JS控制input输入特殊字符
JS控制input输入特殊字符
179 0
|
JavaScript 前端开发
JavaScript 获取 input 输入框内容的几种方法
JavaScript 获取 input 输入框内容的几种方法
819 0