问答详情
源自:3-5 显示和隐藏(display属性)

两个button怎么没反应

两个button怎么没反应

提问者:qq_木头人春天_0 2016-03-14 17:11

个回答

  • 芳的独家记忆
    2016-03-14 17:29:58
    已采纳

    <!DOCTYPE HTML>

    <html>

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">

    <title>className属性</title>

    <style>

        body{ font-size:16px;}

        .one{

    border:1px solid #eee;

    width:230px;

    height:50px;

    background:#ccc;

    color:red;

        }

    .two{

    border:1px solid #ccc;

    width:230px;

    height:50px;

    background:#9CF;

    color:blue;

    }

    </style>

    </head>

    <body>

        <p id="p1" > JavaScript使网页显示动态效果并实现与用户交互功能。</p>

        <input type="button" value="添加样式" onclick="add()"/>

    <p id="p2" class="one">JavaScript使网页显示动态效果并实现与用户交互功能。</p>

        <input type="button" value="更改外观" onclick="modify()"/>


    <script type="text/javascript">

      function add(){

         var p1 = document.getElementById("p1");

         p1.className="one";

      }

      function modify(){

         var p2 = document.getElementById("p2");

         p2.className="two";

      }

    </script>

    </body>

    </html>


  • 我要学习js
    2016-03-24 16:10:59

    楼主代码复制过来可直接使用,没出错


  • 陪君醉笑三千场
    2016-03-16 19:06:08

    none和block记得加双引号

  • 陪君醉笑三千场
    2016-03-16 19:05:16

    我一开始也没反应,然后在none,block与=之间加个空格,发现能运行了。

  • Mr_涛
    2016-03-15 13:56:17

    你如果是把代码粘到本地的话 可能就会失败

  • Mr_涛
    2016-03-15 13:54:55

    我把你的代码粘过来 就可以直接运行


  • Mr_涛
    2016-03-14 17:33:05

    你要用谷歌浏览器的,用别的浏览器可能不支持哦!换个浏览器试一下!加油,要有耐心!