怎樣設置恢復原始值?只能一個一個重新復制原始值嗎?
function q(){
?????????????? var b=confirm("是否取消設置?");
?????????????? if(b==ture)
????????????? { a.style.removeAttribute("style");
??????????? ?
????????????? }
????????????? else
????????????? alert("結束");
}
function q(){
?????????????? var b=confirm("是否取消設置?");
?????????????? if(b==ture)
????????????? { a.style.removeAttribute("style");
??????????? ?
????????????? }
????????????? else
????????????? alert("結束");
}
2016-03-24
舉報
2016-03-24
function q(){
?????????????? var b=confirm("是否取消設置?");
?????????????? if(b==ture) {a.removeAttribute("style");};
//你的代碼變量后多了 ".style".
2016-03-24
function cancel(){
? ? ? ? ?if(confirm("確認取消?")==true){
? ? ? ? ?document.getElementById("txt").style="none";
}
}