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

为什么点显示和隐藏没有反应

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

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

<title>无标题文档</title>

<script type="text/javascript">

function btn_none()

{

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

}

function btn_block()

{

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

mychar.style.display="block";

mychar.style.color="#090";

}

</script>

</head>


<body>

<h3 class="con">晨时新闻</h3>

<p class="pon">在今天早上,芜湖市中心发生了一件骇人耸听的事,某某Ktv发生了持刀杀人的事,一死2伤。目前警方正在对此案进行更深一步的了解,凶手已捕入狱!</p>

<form>

<input type="button" value="隐藏" onclick="btn_none()"/>

<input type="button" value="显示" onclick="btn_block()"/>

<input type="button" value="上色" onclick="btn_color()"/>

</form>

<p class="pon">在今天早上,芜湖市中心发生了一件骇人耸听的事,某某Ktv发生了持刀杀人的事,一死2伤。目前警方正在对此案进行更深一步的了解,凶手已捕入狱!</p>

<input type="button" value="换装" onclick="btn_con()"/>


</body>

</html>


提问者:唯尔半截湘妃 2016-05-02 22:16

个回答

  • 星风阳
    2016-05-02 22:38:49
    已采纳

    getElementById是获取ID的,你下面html中写的是class

  • astralsky
    2016-05-02 22:49:21

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>

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

    <title>无标题文档</title>

    <script type="text/javascript">

    function btn_none()

    {

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

    mychar.style.display="none";

    }

    function btn_block()

    {

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

    mychar.style.display="block";

    }

    function btn_color()

    {

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

    mychar.style.color="#090";

    }

    function btn_con()

    {

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

    mychar.style.color="#060";

    mychar.style.backgroundColor="#CCC";

    }

    </script>

    </head>


    <body>

    <h3 id="con">晨时新闻</h3>

    <p class="pon">在今天早上,芜湖市中心发生了一件骇人耸听的事,某某Ktv发生了持刀杀人的事,一死2伤。目前警方正在对此案进行更深一步的了解,凶手已捕入狱!</p>

    <form>

    <input type="button" value="隐藏" onclick="btn_none()"/>

    <input type="button" value="显示" onclick="btn_block()"/>

    <input type="button" value="上色" onclick="btn_color()"/>

    </form>

    <p class="pon">在今天早上,芜湖市中心发生了一件骇人耸听的事,某某Ktv发生了持刀杀人的事,一死2伤。目前警方正在对此案进行更深一步的了解,凶手已捕入狱!</p>

    <input type="button" value="换装" onclick="btn_con()"/>


    </body>

    </html>


  • gjl002
    2016-05-02 22:43:20

    id名,你是class名。

  • gjl002
    2016-05-02 22:41:17

    document.getElementById("con").style.display="none"; 没有声明变量。。。。

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

    mychar.style.display="none";