-2

9 文字の後にフォームを送信するのに役立つ onkeyup または onclick の JavaScript コード。

私のHTMLコード。AJAX を使用してデータを取得しています。私は多くのスクリプトを試しました。どれも私にはうまくいきません:'(

Enter Your Car No : <input type="text" name="car"  maxlength="9" id="carno" value="<?php echo $_REQUEST["carno"]; ?>"/>
4

2 に答える 2

0

これを試して :

Enter Your Car No : <input type="text" name="car"  maxlength="9" id="carno" value="<?php echo $_REQUEST["carno"]; ?>" onkeypress="submitForm()" onclick="submitForm()"/>
<script>
   function submitForm(){
       var len = document.getElementById("carno").value.length;
       if(len >= 9 ){
           //submit form code
       }else{
           return false;
       }
   }
</script>
于 2013-04-19T05:49:36.040 に答える
0
Enter Your Car No : <input type="text" name="car"  maxlength="9" id="carno" onkeypress="yourFunction()" value="<?php echo $_REQUEST["carno"]; ?>"/>

<script>
function yourFunction(){
  var textValue = document.getElementById('carno').value;
  if(textValue.length >= 9){
       //implement your ajax code
  }
}
</script>


Hai here i am calling function on each key press in that text field and i am getting the value using id and checking that length if its >=9 (ur requirement) so write ajax code 
于 2013-04-19T05:39:22.760 に答える