डेटा JSON या सामान्य POST के माध्यम से भेजा जा सकता है। JSON के माध्यम से भेजे गए डेटा को दर्शाने वाला एक उदाहरण निम्नलिखित है -
var value_1 = 1; var value_2 = 2; var value_3 = 3; $.ajax({ type: "POST", contentType: "application/json; charset=utf-8", url: "your_url_goes_here", data: { data_1: value_1, data_2: value_2, data_3: value_3 }, success: function (result) { // perform operations here } });
सामान्य पोस्ट के साथ, नीचे दिए गए कोड का उपयोग किया जा सकता है -
$.ajax({ type: "POST", url: $('form').attr("action"), data: $('#form0').serialize(), success: function (result) { // perform operations here } });
उपरोक्त कोड का एक विकल्प नीचे प्रदर्शित किया गया है -
data:'id='+ID & 'user_id=' + USERID, with: data: {id:ID, user_id:USERID} so your code will look like this : $(document).ready(function(){ $(document).on('click','.show_more',function(){ var ID = 10; var USERID =1; $('.show_more').hide(); $('.loding').show(); $.ajax({ type:'POST', url:'/ajaxload.php', data: {id:ID, user_id:USERID}, success:function(html){ $('#show_more_main'+ID).remove(); $('.post_list').append(html); } }); }); });