我有一個窗體有兩個輸入字段。如何比較兩個輸入值onkey jquery
<input type="text" id="first" value="">
<input type="text" id="second" value="">
我都試過,但沒有成功
<script>
$(function(){
var fst=$("#first").val();
var sec=$("#second").val();
if (sec>fst) {
alert("Second value should less than first value");
return true;
}
})
</script>
如何只允許第二輸入值只有數字,也低於第一輸入少
一些代碼examlpes的高度讚賞! –