<form>
<!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->
<input type="button" value="改变颜色" onclick="changecolor()" >
<input type="button" value="改变宽高" onclick="changewh()" >
<input type="button" value="隐藏内容" onclick="hidetext()" >
<input type="button" value="显示内容" onclick="showtext()" >
<input type="button" value="取消设置" onclick="res()">
</form>
<script type="text/javascript">
//定义"改变颜色"的函数
function changecolor(){
var demo1=document.getElementById("text");
demo1.style.color="green";
demo1.style.backgroundColor="blue";
}
//定义"改变宽高"的函数
function changewh(){
var demo2=document.getElementById("text");
demo2.style.width="200px";
demo2.style.height="300px";
}
//定义"隐藏内容"的函数
function hiddentext(){
var demo3=document.getElementById("text");
demo3.style.display="none";
}
//定义"显示内容"的函数
function showtext(){
var demo4=document.getElementById("text").style.display="block";
}
//定义"取消设置"的函数
function res(){
var demo5=confirm("是否取消设置?");
if(demo5==true){
text.style('');
}
}
Blue丨冰焰
qq_再见时光_0
于治y2
Lucifer_竹岚
499978920
qq_再见时光_0
今天你好
相关分类