取消設置?
有沒有人幫我看看為什么取消設置沒反應啊?function cancle(){ if(confirm("是否取消設置?")) ? ?{ ? ? ? ?var char=document.getElementById("txt"); ? ? ? ?char.style=""; ? ?} }
有沒有人幫我看看為什么取消設置沒反應啊?function cancle(){ if(confirm("是否取消設置?")) ? ?{ ? ? ? ?var char=document.getElementById("txt"); ? ? ? ?char.style=""; ? ?} }
2017-07-12
舉報
2017-07-12
function cancel()
{
? ? var qx=confirm("取消設置");
? ? if(qx==true)
? ? {?
? ? ? ?Txt.removeAttribute('style');
? ? }
? ? else
? ? {}
}