问答详情
源自:4-1 编程挑战

为什么我的答案不显示

为什么我的答案不显示,点了那个"不会了怎么办"也没啥反应,有的章节是的,有的不是,搞得很是忧桑,不知道哪位大神可以代为解答一下,不然遇到不会的根本就傻眼了

提问者:慕仰5293895 2016-09-05 22:40

个回答

  • 刘萝卜
    2016-09-06 02:26:09
    已采纳

    有的会给些提示,有的没有,很正常,下边的评论区有好多人的讨论,你也可以看看我的~~



    <!DOCTYPE HTML>

    <html>

    <head>

    <meta http-equiv="Content-Type" Content="text/html; 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>JavaScript为网页添加动态效果并实现与用户交互的功能。</h5>

            <p>1. JavaScript入门篇,让不懂JS的你,快速了解JS。</p>

            <p>2. JavaScript进阶篇,让你掌握JS的基础语法、函数、数组、事件、内置对象、BOM浏览器、DOM操作。</p>

            <p>3. 学完以上两门基础课后,在深入学习JavaScript的变量作用域、事件、对象、运动、cookie、正则表达式、ajax等课程。</p>

      </div>

      <form>

        <input type="button" value="改变颜色" onclick="yanse()">  

        <input type="button" value="改变宽高" onclick="kgao()">

        <input type="button" value="隐藏内容" onclick="ycang()">

        <input type="button" value="显示内容" onclick="xshi()">

        <input type="button" value="取消设置" onclick="qxiao()">

      </form>

      <script type="text/javascript">

    function yanse(){

    document.getElementById("con").style.color="red";

         document.getElementById("txt").style.color="red";

    }

    function kgao(){

    document.getElementById("txt").style.width="400px";

    document.getElementById("txt").style.height="300px";

    }

    function ycang(){

    document.getElementById("txt").style.display="none";

    }

    function xshi(){

    document.getElementById("txt").style.display="block";

    }

    function qxiao(){

    if (confirm("确认取消设置吗?")) {

     txt.style.cssText="none"; 

     con.style.cssText="none";

    } else{}

    }

      </script>

    </body>

    </html>


  • 慕瓜3984760
    2016-09-11 10:21:18

    取消设置没效果

  • 刘萝卜
    2016-09-06 11:19:01

    可以啊

    http://img.mukewang.com/57ce3582000172c404960424.jpg