供大家交流
<script type="text/javascript">
alltext = document.getElementById("txt");
//定义"改变颜色"的函数
function changecolor(){
alltext.style.color="#FFF";
alltext.style.backgroundColor="#CCC";
}
//定义"改变宽高"的函数
function changewidth(){
alltext.style.width="300px";
alltext.style.height="200px";
}
//定义"隐藏内容"的函数
function hidetext(){
alltext.style.display="none";
}
//定义"显示内容"的函数
function showtext(){
alltext.style.display="block";
}
//定义"取消设置"的函数
function resettext(){
var rst = confirm("Cancel setup, yes or no?");
if(rst==true){
alltext.removeAttribute('style');
}
else
alert("No reset");
}
</script>