如何為定義取消設(shè)置??
function rec(){ ? ? ? ?var rec=confirm("是否取消設(shè)置?"); ? ? ? ?if(rec==true){ ? ? ? ? ?var txt = document.getElementById("txt"); ? ? ? ? ?txt.removeAttribute("style"); ? ? ? ?} ? ?}
function rec(){ ? ? ? ?var rec=confirm("是否取消設(shè)置?"); ? ? ? ?if(rec==true){ ? ? ? ? ?var txt = document.getElementById("txt"); ? ? ? ? ?txt.removeAttribute("style"); ? ? ? ?} ? ?}
2016-08-18
舉報(bào)
2016-08-18
function cancle(){
var myfive=confirm("確定恢復(fù)原始值嗎?");
if ( myfive==true){
document.getElementById("txt").style.cssText="";
}
}