function getRealValue(numValue)
{
  var resultValue;
 
  if(document.all(numValue).value!="")
  {
   
    for(var i=0;i<document.all(numValue).value.length;i++)
 {
  var tempValue;
  tempValue=document.all(numValue).value.charAt(i);
  
  if(tempValue!='0')
                {
                  
                    resultValue=document.all(numValue).value.substring(i,document.all(numValue).value.length);
                   
                    break; 
                }
                   
 }
 
  }
 
  return resultValue;
 

}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-25
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-02-16
  • 2021-12-20
  • 2021-05-25
  • 2022-12-23
  • 2021-10-11
相关资源
相似解决方案