Themabewertung:
  • 0 Bewertung(en) - 0 im Durchschnitt
  • 1
  • 2
  • 3
  • 4
  • 5
html pattern onclick js
#1
Code:
<input type="text" class="form-control" placeholder="Adresse" id="address" style="height: 33px; width: 300px" maxlength="7"  required="required" pattern=".{7}">
 
 dieses input ist so konfiguriert, dass man 7 zeichen eingeben muss! nicht mehr und nicht weniger!
 wird aber bei js nicht mit übernommen?

 was muss ich im js anpassen?

 
Code:
function test() {    
var address = document.getElementById('address').value;
    dataString = 'send_pocsag='+address;
    $.ajax({
        type: 'POST',
        url: 'monitorOESoft.php',
        data: dataString,    
        success: function(response){
             if(response==3822){
            $('#myModal4').modal('hide');    
            $('#address').val('');         
    }
   }    
  });
}
Zitieren


Nachrichten in diesem Thema
html pattern onclick js - von black79 - 29.05.2022, 09:23
RE: html pattern onclick js - von admin - 29.05.2022, 19:37
RE: html pattern onclick js - von black79 - 31.05.2022, 09:06
RE: html pattern onclick js - von admin - 01.06.2022, 22:37
RE: html pattern onclick js - von black79 - 02.06.2022, 05:48
RE: html pattern onclick js - von admin - 31.05.2022, 18:04
RE: html pattern onclick js - von black79 - 01.06.2022, 09:13
RE: html pattern onclick js - von admin - 02.06.2022, 23:04
RE: html pattern onclick js - von black79 - 04.06.2022, 14:02

Gehe zu:


Benutzer, die gerade dieses Thema anschauen:
1 Gast/Gäste