内容互换&同意下一步

a=document.getElementById("a");
b=document.getElementById("b");
c=document.getElementById("c");
d=document.getElementById("d");

b.onclick=function(){
a.appendChild(d.selectedOptions[0])
d.removeChild(d.selectedOptions[0])
}

c.onclick=function(){
d.appendChild(a.selectedOptions[0])
a.removeChild(d.selectedOptions[0])
}

a=document.getElementById("a");
b=document.getElementById("b");
c=document.getElementById("c");

a.onclick=function(){

if(a.checked){
c.removeAttribute("disabled");
}else{
c.setAttribute("disabled","disabled");
}

}

posted on 2017-09-26 22:31  段了的弦  阅读(103)  评论(0编辑  收藏  举报