<head>
    <title>无标题页</title>
    <script type="text/javascript">    function changeRed()
    {
   document.getElementById("one").style.backgroundColor="red";
    }
    function changeGreen()
    {
   document.getElementById("one").style.backgroundColor="green";
    }
    
    </script>
</head>
<body>
  <div id="one"></div>
    <input id="btnRed" type="button" value="红色"  onclick="changeRed();"/>
    <input id="btnGreen" type="button" value="绿色" onclick="changeGreen();" />
</body>
</html>怎么就是出不来啊!! 哪错了