如何将多个同名checkbox的文字内容(不是值)合并写入到另一个文本框中

发布网友 发布时间:2022-04-23 09:05

我来回答

1个回答

热心网友 时间:2023-10-09 00:59

<script>
function jdd(){
var dm = document.getElementsByName('dm');
var res = "", i = dm.length;
while(i){
if(dm[dm.length-i].checked){
res += dm[dm.length-i].getAttribute("textValue");
}
i--;
}
document.getElementById("note").value = res;
}
</script>



</script>

<input type="checkbox" name="dm" id="area1" value="200" textValue="北京"/>北京

<input type="checkbox" name="dm" id="area2" value="235" textValue="上海"/>上海

<input type="checkbox" name="dm" id="area3" value="180" textValue="广州"/>广州

<input type="text" id="note" />       <input name="hb" type="button" value="合并" onclick="jdd()" />

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com