如何取消style設(shè)置
//定義"取消設(shè)置"的函數(shù)
? ? ? ? function cancelSet()
? ? ? ? {
? ? ? ? ? ? var ifConfirm = confirm("要取消設(shè)置嗎?");
? ? ? ? ? ? if(ifConfirm)
? ? ? ? ? ? ? ? {document.getElementById("txt").removeAttribute("style");}
? ? ? ? }
//定義"取消設(shè)置"的函數(shù)
? ? ? ? function cancelSet()
? ? ? ? {
? ? ? ? ? ? var ifConfirm = confirm("要取消設(shè)置嗎?");
? ? ? ? ? ? if(ifConfirm)
? ? ? ? ? ? ? ? {document.getElementById("txt").removeAttribute("style");}
? ? ? ? }
2016-07-27
舉報
2016-07-27
將document.getElementById("txt").removeAttribute("style");改為document.getElementById("txt").style.cssText="";清空js設(shè)置的內(nèi)聯(lián)css樣式