<!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>
  <title> new document </title>
  <script type="text/javascript">
  <!--
function sum(sign){
var oval = document.getElementById("oval");
if(sign == '-'){
oval.value = parseInt(oval.value) - 1;
}else{
oval.value = parseInt(oval.value) + 1;
} }
  //-->
  </script>
 </head> <body>
  <input type="button" value=" - " onclick="sum('-')" /><input type="text" id="oval" value="100" /><input type="button" value=" + " onclick="sum('+')"/>
 </body>
</html>

解决方案 »

  1.   


    <html xmlns="http://www.w3.org/1999/xhtml">
     <head>
      <title> new document </title>
      <script type="text/javascript">
      <!--
        function sum(sign){
            var oval = document.getElementById("oval");
            if(sign == '-'){
                oval.value = parseInt(oval.value) - 1;
            }else{
                oval.value = parseInt(oval.value) + 1;
            }    }
      //-->
      </script>
     </head> <body>
      <input type="button" value=" - " onclick="sum('-')" /><input type="text" id="oval" value="100" /><input type="button" value=" + " onclick="sum('+')"/>
     </body>
    </html>
    这个是对的