当前位置: 代码迷 >> Java相关 >> javascript 中文本框中数字如何比较
  详细解决方案

javascript 中文本框中数字如何比较

热度:10959   发布时间:2013-02-25 21:47:49.0
javascript 中文本框中数字怎么比较
<input id="toplimit1" type="text" name="shangxian" width="10%" value="8000"/>
<input id="bottomlimit1" type="text" name="xiaxian" width="10%" value="13000"/>
var bottomlimit = document.getElementById("bottomlimit2").value.valueOf();
var toplimit = document.getElementById("toplimit2").value.valueOf();
alert(bottomlimit);
alert(toplimit);
alert(bottomlimit<toplimit);
alert(bottomlimit>toplimit);
为什么是true

------解决方案--------------------------------------------------------
var bottomlimit = document.getElementById("bottomlimit2").value.valueOf();
var toplimit = document.getElementById("toplimit2").value.valueOf();
var b=parseInt(bottomlimit );
var t=parseInt(toplimit );
alert(b<t);
alert(t>b);
  相关解决方案