我想做一个简单的工作搜索,但我不能完成,如果我选中了未完成的复选框,它会移动到完成组,如果我选中第二个复选框,它也会移动到完成组,如果我选中了选中Done中的框它移回Undone我已经在 jquery 中完成了此操作,但想在 javascrip 中执行此
操作任何人都可以帮助我
<table width="427" height="88">
<tr><td><input type="button" name="submit" value="Add New" /></td></tr>
<tr>
<td id="1">Undone<br />
<input type="checkbox" name="chk1" id="chk1" onclick="remove(this.id);" />
<input type="checkbox" name="chk2" id="chk2" onclick="remove(this.id);"/>
<input type="checkbox" name="chk3" id="chk3" onclick="remove(this.id);"/></td>
</tr>
<tr>
<td id="2">Done<br />
<input type="checkbox" name="chk4" id="chk4" onclick="remove2(this.id)"/>
<input type="checkbox" name="chk5" id="chk5" onclick="remove2(this.id)"/>
<input type="checkbox" name="chk6" id="chk6" onclick="remove2(this.id)"/>
</td>
</tr>
</table>
</body>
</html>
<script>
function remove(id){
$("#"+id).remove();
var chk='<input type="checkbox" name='+id+' id='+id+' onclick="remove2(this.id)"/>';
$("#2").append(chk);
};
function remove2(id){
$("#"+id).remove();
var chk='<input type="checkbox" name='+id+' id='+id+' onclick="remove(this.id)"/>';
$("#1").append(chk);
};
</script>