取消設(shè)置不工作
//定義"取消設(shè)置"的函數(shù)
function cancelAll(){
? ? var r=confirm ("Are you sure to cancel all settings?");
? ? if (r==true){
? ? ? ? txt.removeAttribute("style");
? ? }
? ? else{
? ? ? ? document.write("Fail to cancel!");
? ? }
}?
//定義"取消設(shè)置"的函數(shù)
function cancelAll(){
? ? var r=confirm ("Are you sure to cancel all settings?");
? ? if (r==true){
? ? ? ? txt.removeAttribute("style");
? ? }
? ? else{
? ? ? ? document.write("Fail to cancel!");
? ? }
}?
2018-05-24
舉報(bào)
2018-05-24
1、txt是指的是?var mychar=document.getElementById('txt');?
2、onclick確認(rèn)一下