Ich hatte ein Problem mit der Post-API von jQuery.
$(".MGdi").click(function () {
id=$(this).attr("rel")
$.post( 'Mdeger.asp?cmd=MG', { id: id, drm: $(this).html()} ,
function( data ) {
var $response=$(data);
var snc = $response.find('#snc').html();
alert(snc);
},"application/x-www-form-urlencoded");
});
Ein anderer Weg ist:
$(".Pasif").click(function () {
id=$(this).attr("rel")
$.post( 'Mdeger.asp?cmd=Pasif', { id: id, drm: $(this).html()} ,
function( data ) {
$(this).html(data);
alert(data)
},"application/x-www-form-urlencoded");
});
Alles ist auf Serverseite in Ordnung, aber die Erfolgsfunktion auf Clientseite macht nichts. Auch einfache Codes wie alert("hoho")
; lösen keinen Erfolg aus.
0 Stimmen
Ich konnte keine Lösung finden, aber wenn Sie ein ähnliches Problem haben, empfehle ich die Verwendung von Jax :)