Bei der Arbeit an einem Projekt stieß ich auf die Situation, dass ich die Eingabetaste binden musste, sodass ich den Szenariocode direkt abfing. Der Code lautet wie folgt:
function sendLoginData( ){
loginvalidateForm ();
$(document).keydown(function(event){
if(event.keyCode == 13){ //Bind Enter
$(' #login-submit ').click(); /Automatisch/die Anmeldeschaltfläche auslösen
}
}
$('#login-submit').click(function(){
if( $('#login-form').valid()==false){
return false; val();
var passwort = $('#id_password').val();
$.ajax({
type:"post",
dataType:"json",
contentType:"application /x-www-form-urlencoded;charset=UTF-8",
url:"{% url netPan.User.views.LoginHd%}",
data:{
Benutzername: Benutzername,
Passwort: Passwort
},
beforeSend: function(){
//Informationen zur Verbesserung der Benutzererfahrung
$('#loginInfoWord').show(). text('wird verarbeitet, bitte warten...');
},
success:function(data){
var message = data.message; ){
//Promptinformationen zur Verbesserung der Benutzererfahrung
$('#loginInfoWord').show().text('Anmeldung erfolgreich, springen...');
window.location.href = '{% url netPan.index.IndexHd%}';
}else if(message == 'C'){
$('#loginInfoWord').show().text('User Falscher Name oder Passwort');
}else if(message == 'N'){
$('#loginInfoWord').show().text('Sie haben sich noch nicht registriert! ');
}else if(message == 'H'){
$('#loginInfoWord').show().text('Sie haben Ihr Konto noch nicht aktiviert, bitte melden Sie sich bei Ihrem E-Mail-Konto an um Ihr Konto zu aktivieren!' );
}
},
error: function(xhr,textStatus,errorThrown){
$('#loginInfoWord').show().text('Exception aufgetreten:' errorThrown);
}
});
}); damit
$(document) .keydown(function(event){
if(event.keyCode == 13){ //Bind Enter
$('#login-submit'). click(); /Automatisch/die Anmeldeschaltfläche auslösen
}
});