问答详情
源自:3-6 控制类名(className 属性)

输出的结果只有 JavaScript

<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8">
        <title>calssName属性</title>
        <style type="text/css">
            input{
                font-size: 10px;
            }    
        .one{
            width: 200px;
            background-color: #CCC;            
        }
        .two{
            font-size: 18px;        
            color:#F00;
        }
        </style>
    </head>
    <body>
        <p id = "con" class="one">JavaSprict<p>
        <form
            input type = "button" value = "点击更改" onclick="modifyclass()"    >
        </form>
        <script type = "text/javasprit">
            var mychar = document.getElementById("con");
            document.write("p元素calss值为:"+mychar.className+"<br/>");//输出p元素给的属性
            function modifyclass(){
                mychar.className = "two";//改变className
            }
        </script>
    </body>
</html>




提问者:慕瓜105636 2018-11-03 19:42

个回答

  • 嘿咯嘿咯咯咯咯
    2018-11-03 21:52:37
    已采纳

    你的p段那个标签内容只有JavaSprict啊

  • 慕移动8517387
    2019-06-04 00:09:24

    感觉都是漏洞


  • 酷睿N核
    2019-02-15 12:08:34

    1. form 标签没有封闭;

    2. input 标签没有封闭;

    3. text/javascript 拼写错误。

  • ByteMe
    2018-11-03 21:18:11

    有一句代码写错了,应该是<script type="text/javascript">