87,997
社区成员




var m=document.createElement("input");
m.type="checkbox";
m.id="prompt"+num;
m.style.display="inline-block";
m.onclick=function(){boxcheck(this.id)};
document.getElementById("three_block"+num).appendChild(m);
var mm=document.createTextNode("其他 ");
document.getElementById("three_block"+num).appendChild(mm);
或者
var m=document.createElement("input");
m.type="checkbox";
m.id="prompt"+num;
m.style.display="inline-block";
m.onclick=function(){boxcheck(this.id)};
document.getElementById("three_block"+num).appendChild(m);
var mm=document.createElement('span');
mm.innerHTML = "其他 ";
document.getElementById("three_block"+num)appendChild(mm);