为了账号安全,请及时绑定邮箱和手机立即绑定

麻烦帮我看一下为什么在浏览器点击按钮后变不了two的样式

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>innerHTML</title>
<style>
    input{
        font-size:10px;
        }
    .one{
        width:500px;
        background-color:red;
    .two{
        font-size:200px;
        color:blue;
        }
</style>
<body>
    <h1>JAVASCRIPT</h1>
        <p id="con" class="one">作为一个优秀的PHP开发师</p>
    <form>
        <input type="button" value="改变类样式" onclick="myClass()">
    </form>
<script type="text/javascript">
    var mychar=document.getElementById("con")
    document.write("p元素的class值为:"+mychar.className+"<br>");
    function myClass(){
        mychar.className="two";
    }
</script>
</body>
</html>

正在回答

5 回答

.one的样式少了个结束的大括号(不起作用的原因),</style>后面少了个</head>结束标签。写代码的时候先将该闭合的闭合,再填代码就不容易出错了。严格来说<input /><br />也是要闭合的。

0 回复 有任何疑惑可以回复我~

CSS 样式写错了,

.one样式后面少了一个大括号, 

.one{
        width:500px;
        background-color:red;


0 回复 有任何疑惑可以回复我~

没有给function myClass()函数声明mychar变量的值,应该在{mychar.className="two"前面写上var myclass=document.getElementById("con")}

0 回复 有任何疑惑可以回复我~

   var mychar=document.getElementById("con")要放在 

  function myClass(){mychar.className+"<br>")

        mychar.className="two";
    }

里面;如

function myClass(){

   var mychar=document.getElementById("con")

        mychar.className="two";
    }

0 回复 有任何疑惑可以回复我~

在function myClass(){
        mychar.className="two";
    }中添加  var mychar=document.getElementById("con"),即可。代码是

function myClass(){

       var mychar=document.getElementById("con");

        mychar.className="two";
    }

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

麻烦帮我看一下为什么在浏览器点击按钮后变不了two的样式

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信