javascript中对窗口大小,文本等的设置

<title>Title</title> <style type="text/css"> body{font-size:12px;} #txt{ height:400px; width:600px; border:#333 solid 1px; padding:5px;} p{ line-height:18px; text-indent:2em;} </style> </head> <body> <h2 id="con">JavaScript课程</H2> <div id="txt"> <h5>JavaScript为网页添加动态效果并实现与用户交互的功能。</h5> </div> <form> <!--当点击相应按钮,执行相应操作,为按钮添加相应事件--> <input type="button" value="改变颜色" onClick="color()"> <input type="button" value="改变宽高" onClick="wh()"> <input type="button" value="隐藏内容" onClick="hide()"> <input type="button" value="显示内容" onClick="show()"> <input type="button" value="取消设置" onClick="Clear()"> </form> <script type="text/javascript"> //定义"改变颜色"的函数 function color(){ var mychar=document.getElementById("txt"); mychar.style.color="red"; mychar.style.backgroundColor="#aaa"; }

//定义"改变宽高"的函数
function wh(){
    var mychar=document.getElementById("txt");
    mychar.style.width="400px";
    mychar.style.height="400px";
}

//定义"隐藏内容"的函数
function hide(){
    var mychar=document.getElementById("txt");
    mychar.style.display="none";
}
//定义"显示内容"的函数
function show(){
    var mychar=document.getElementById("txt");
    mychar.style.display="block";
}

//定义"取消设置"的函数
function Clear(){
    var mychar=confirm("要取消设置吗?");
    if (mychar==true){
       var a=document.getElementById("txt");
        a.style.cssText="";
    }
}

</script>

转载于:https://my.oschina.net/zoujinxia/blog/716666

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值