J'utilise JQuery ajax jsonp. J'ai sous le code JQuery:
$.ajax({
type:"GET",
url: "Login.aspx", // Send the login info to this page
data: str,
dataType: "jsonp",
timeout: 200000,
jsonp:"skywardDetails",
success: function(result)
{
// Show 'Submit' Button
$('#loginButton').show();
// Hide Gif Spinning Rotator
$('#ajaxloading').hide();
}
});
Le code ci-dessus fonctionne correctement. Je souhaite simplement envoyer la demande sous la forme "POST" au lieu de "GET" . Veuillez indiquer comment procéder.
Merci