我试图使用这段代码来序列化一个表单,同时发送一个在表单中找不到的额外的变量.以下代码是我的预期,但遗憾的是不行.
var thePage = theFilename(); $.post("pagedetail.PHP",{ $("#PageDetailForm").serialize(),thePage: thePage },function(data) { alert(data); });
有任何想法吗?
var serialized = $('#PageDetailForm').serialize(); serialized.thePage = thePage; $.post("pagedetail.PHP",serialized,function(data) { alert(data); });