标签:auto get 代码块 script class txt lock splay isp
//定义"改变颜色"的函数 var txt = document.getElementById(‘txt‘); function changeColor(){ if(confirm("确认取消设置吗?")){ txt.style.color = ‘red‘; } } //定义"改变宽高"的函数 function changeWH(){ if(confirm("确认取消设置吗?")){ txt.style.width = "250px"; txt.style.height = "250px"; } } //定义"隐藏内容"的函数 function hiddenTxt(){ if(confirm("确认取消设置吗?")){ txt.style.display = "none"; } } //定义"显示内容"的函数 function showTxt(){ if(confirm("确认取消设置吗?")){ txt.style.display = "block"; } } //定义"取消设置"的函数 function cancle(){ if(confirm("确认取消设置吗?")){ txt.style.color = ‘black‘; txt.style.width = "600px"; txt.style.height = "400px"; txt.style.display = "none" ? "block" : "none"; } }
标签:auto get 代码块 script class txt lock splay isp
原文地址:http://www.cnblogs.com/duminghui/p/7409897.html