JavaScript入门

 慕课网编程小练习

请编写"改变颜色"、"改变宽高"、"隐藏内容"、"显示内容"、"取消设置"的函数,点击相应按钮执行相应操作,点击"取消设置"按钮后,提示是否取消设置,如是执行操作,否则不做操作。

<!DOCTYPE HTML>
<html>
<head>
 <meta charset="utf-8" >  
<title>javascript</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>this page is test。</h5>
        <p>1. this page is test</p>
        <p>2. this page is test</p>
        <p>3. this page  is test</p>
  </div>
  <form>
  <!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->
    <input type="button" value="改变颜色" onclick="set.changeColor()">  
    <input type="button" value="改变宽高" onclick="set.changeSize()">
    <input type="button" value="隐藏内容" onclick="set.objHide()">
    <input type="button" value="显示内容" onclick="set.objShow()">
    <input type="button" value="取消设置" onclick="set.offSet()">
  </form>
  <script type="text/javascript">
  //获取txt元素
   var txt=document.getElementById("txt");
   var set={
       //定义改变颜色函数
    changeColor:function(){
        txt.style.color="green";
        txt.style.backgroundColor="#ccc";
    },
      //定义改变字体大小函数
    changeSize:function(){
        txt.style.width="400px";
        txt.style.height="500px";
    },
      //定义隐内容函数 
    objHide:function(){
        txt.style.display="none";
    },
      //定义显示内容函数
    objShow:function(){
        txt.style.display="block";
    },
      //定义取消设置函数
    offSet:function(){
        var message=confirm("你确定要重置所有设置么?");
        if(message==true){
            txt.removeAttribute('style');
        }
    }
  }
  </script>
</body>
</html>

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值