是否可以通过ajax将输入发送到php脚本并成功回调.load已经显示的页面的一部分并且在重新加载的部分中有一个php脚本在输入的标签内显示一个SESSION变量? / p>
编辑:所以这是我认为实施的脚本错误,你有什么错误让我解决?
$(document).ready(function(){
$('input1').on('keypress',function(e){
var p = e.which;
if(p==13){
var input1set = $(this);
var input1 = input1set.serialize();
$.ajax({
url:'inputs.php',
type: 'post',
data: input1,
success: function(input1) {
$('#input1lable').load("tables/table_1.php #input1lable");
}
});
return false;
});
// this is the repeatable input field code.
});
那我在哪里错了?
P.S我希望已经有足够的背景知道这在我的APP中是如何工作的。