29.05.2022, 09:23
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('');
}
}
});
}