更改h3标签内容

时间:2015-04-03 07:47:54

标签: javascript html css

     <html>
     <head>
          <style>
                body{
                    background-color:#6badf6;
                }
                #button-layout{
                background-color: #3b81cf;
                width:100px;
                height:40px;
                border-radius:10px;
                margin-left:50%;
                margin-top: 25%;
           }
        #button-name{
            font-family: verdana;
            font-size: 14px;
            color: white;
            padding-left: 22px;
            padding-top: 11px;

          }
        #button-name:hover{
            cursor: pointer;

         }

    </style>
    <script>

        function change-content(){
              document.getElementById('button-name').innerHTML = ">";
        }
    </script>
    </head>
    <body>
        <div id="button-layout">
                <h3 id="button-name" onmouseover="change-content()">Submit</h3>
        </div>
    </body>
    </html>

我使用div标签创建了一个按钮。它实际上不是一个按钮,但它看起来像一个按钮。 在这里,我想将h3标签的内容更改为“&gt;”鼠标悬停在它上面时的这个符号。怎么做?

我在javascript中编写代码来更改h3内容但它不会显示任何效果?我不知道为什么?

2 个答案:

答案 0 :(得分:2)

您在setTimeout调用中将function拼写为funtion

答案 1 :(得分:2)

函数拼写错误,应该是函数:

setTimeout(function(){
    document.getElementById("date").value = current_date.toDateString();
},1000);