发布网友 发布时间: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()" />