作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我很想做一个简单的工作搜索,但我无法完成,如果我在未完成中选中一个复选框,它会移动到完成组,如果我选中第二个复选框,它也会移动到 done 组,如果我选中了 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>
最佳答案
这是我整理的。您可以查看 jsfiddle 上的工作演示:http://jsfiddle.net/nathanmyles/CXWYa/
JavaScript
function setup(){
var done = document.getElementById('done');
attachClickEvents(done, moveToUndone);
var undone = document.getElementById('undone');
attachClickEvents(undone, moveToDone);
}
function attachClickEvents(parent, moveFunction){
var elements = parent.children;
for(var i = 0; i < elements.length; i++){
var element = elements[i];
if(element.tagName.toLowerCase() === 'input'){
var id = element.id;
attachOnClick(element, moveFunction, id);
}
}
}
function moveToDone(id) {
remove(id);
append('done', createCheckBoxElement(id, moveToUndone));
}
function moveToUndone(id) {
remove(id);
append('undone', createCheckBoxElement(id, moveToDone));
}
function createCheckBoxElement(id, moveFunction){
var element = document.createElement('input');
element.setAttribute('type', 'checkbox');
element.setAttribute('name', id);
element.setAttribute('id', id);
attachOnClick(element, moveFunction, id);
return element;
}
function attachOnClick(element, callback, id){
element.onclick = function() {
callback(id);
};
}
function append(parentId, element){
var parent = document.getElementById(parentId);
parent.appendChild(element);
}
function remove(id) {
var element = document.getElementById(id);
element.parentNode.removeChild(element);
}
setup();
HTML
<table width="427" height="88">
<tr>
<td id="undone">Undone
<br />
<input type="checkbox" name="chk1" id="chk1" />
<input type="checkbox" name="chk2" id="chk2" />
<input type="checkbox" name="chk3" id="chk3" />
</td>
</tr>
<tr>
<td id="done">Done
<br />
<input type="checkbox" name="chk4" id="chk4" />
<input type="checkbox" name="chk5" id="chk5" />
<input type="checkbox" name="chk6" id="chk6" />
</td>
</tr>
</table>
关于javascript - 将复选框从一组移动到另一组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13669768/
我是一名优秀的程序员,十分优秀!