document.getElementById("a1").value = document.getElementById("a1").value.substring(0, document.getElementById("a1").value.length - 2);

解决方案 »

  1.   

    <!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=gb2312" />
    <title>无标题文档</title>
    </head><body>
    <input type=text value="1234" name="a1" id="a1"> 
    <input type=button value="点我" onclick="abc();"> 
    <script> 
    function abc(){ 
    var vvalue = document.getElementById("a1").value;
    if(vvalue==""){
     alert("没有元素!")
    }
    num= vvalue.length -1;
    vvalue= vvalue.slice(0,num);
    document.getElementById("a1").value = vvalue;
    document.getElementById("a1").focus();
    //document.getElementById("a1").value=这里让文本框的字符-最后一位,相当于backspace键 

    </script>
    </body>
    </html>