定義“取消設(shè)置”的函數(shù),我這么設(shè)置怎么起不了作用呢?
function cancel(){
? ? var message=confirm("確定要取消設(shè)置么?")
? ? if(message=="true"){
? ? ? var pp=document.getElementById("txt");
? ? ? pp.style.width="600px";
? ? ? pp.style.height="400px";
? ? ? pp.style.color="#000";
? ? ? pp.style.backgroundColor="#fff";
? ? ? pp.style.display="block";
? ? }
}
2016-02-05
把true的雙引號(hào)去掉就行了
function cancel(){
? ? var message=confirm("確定要取消設(shè)置么?")
? ? if(message==true){
? ? ? var pp=document.getElementById("txt");
? ? ? pp.style.width="600px";
? ? ? pp.style.height="400px";
? ? ? pp.style.color="#000";
? ? ? pp.style.backgroundColor="#fff";
? ? ? pp.style.display="block";
? ? }
2016-02-05
問題解決了...是語法錯(cuò)誤...
在confirm語句后面少了一個(gè)分號(hào),以及對message的判斷語句把雙引號(hào)去掉。
代碼本身沒問題。
2016-02-05
試試修改方法名,我開始用”reset“做方法名沒反應(yīng),改成”resetStyle“就可以了