$('#form-register').change(function() {
var i_username = $('input#input-username').val();
var i_password = $('input#input-password').val();
var i_company = $('input#input-company').val();
var i_phone = $('input#input-phone').val();
$.post("home", {
username : i_username,
password : i_password,
company : i_company,
phone : i_phone,
register : 'helloworld'
}, function(return_data){
$('body').html(return_data);
});
});
好的問題可能是在$('body').html(return_data);
我們可以從返回數據中獲取特定的html嗎?例如#errordiv包含我的錯誤列表,如果存在然後以某種方式附加在我的頁面上?還是有另一種更好的方法來做到這一點?得到一個特定的html返回jquery ajax後
感謝您尋找的,
亞當·拉馬丹
究竟返回的數據?服務器端的一部分? – ifaour
是的。那是問題嗎 ?仍然不能讓它工作,但。 –
我在問你在這裏發佈數據,還是服務器端部分?例如,你使用'json_encode'? – ifaour