供大家交流
<script type="text/javascript">
? alltext = document.getElementById("txt");
//定義"改變顏色"的函數(shù)
function changecolor(){
? ? alltext.style.color="#FFF";
? ? alltext.style.backgroundColor="#CCC";
}
//定義"改變寬高"的函數(shù)
function changewidth(){
? ? alltext.style.width="300px";
? ? alltext.style.height="200px";
}
//定義"隱藏內(nèi)容"的函數(shù)
function hidetext(){
? ? alltext.style.display="none";?
}
//定義"顯示內(nèi)容"的函數(shù)
function showtext(){
? ? alltext.style.display="block";
}
//定義"取消設(shè)置"的函數(shù)
function resettext(){
? ? var rst = confirm("Cancel setup, yes or no?");
? ? if(rst==true){
? ? ? ? alltext.removeAttribute('style');
? ? }
? ? else
? ? ? ? alert("No reset");
}
? </script>
2019-07-09
多謝分享,