Jquery post kullanımı. How to use jquery post method

Aşağıdaki fonkisyonu kullanabilirisniz.

<script>
$(document).ready(function(){

$(“#signin”).submit(function(event) {

event.preventDefault();

var $form = $( this ),
kullaniciadi  = $form.find( ‘input[name=”kullaniciadi”]’ ).val(),
sifre          = $form.find( ‘input[name=”sifre”]’ ).val(),
url           = $form.attr( ‘action’ );
alert(did);
alert(dil);
$.post(url, { kullaniciadi: kullaniciadi, sifre: sifre, did: did, dil: dil }); // login oluyoz

// window.location.replace(url); // sisteme giriyoz

});

});

</script>

 

VN:F [1.9.22_1171]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.22_1171]
Rating: 0 (from 0 votes)