效果都顯示不出來,請問哪里出問題了?
//定義"改變顏色"的函數(shù)
function changeColor(){
??? var hh=document.getElementById("txt");
??? hh.style.color="red";
??? hh.style.backgroundColor="#ccc";
}
//定義"改變寬高"的函數(shù)
function changeSize(){
??? var hh=document.getElementById("txt");
??? hh.style.width="300px";
??? hh.style.height="300px";
}
//定義"隱藏內(nèi)容"的函數(shù)
function hide(){
??? var hh=document.getElementById("txt");
??? hh.style.display="none";
}
//定義"顯示內(nèi)容"的函數(shù)
function show(){
??? var hh=document.getElementById("txt");
??? hh.style.display="block";
}
//定義"取消設(shè)置"的函數(shù)
function offset(){
??? var mes=confirm("確定取消設(shè)置嗎?");
??? if (mes==ture){
??????? mydiv.removeAttribute("style");
??? }
}
?
效果都顯示不出來,請問哪里出問題了?
2016-10-17
按鈕設(shè)置了么?在按鈕后面定義一下
2016-10-19
恩,看著代碼都是沒問題的,估計是你沒有給按鈕添加點擊事件。有個地方你寫的不太完美,就是最后一個函數(shù),if(mes)這么寫就可以了,不用mes==true;因為confirm()方法返回值就是true 、false,就是一個boolean,不用再去判斷了!