我通过 jquery $.post 将我的表单数据发送到某个 PHP 页面,但现在我想在这个发送的包中添加一些额外的数据。这是我的代码:
$.post("/settings/filter", $("#filter_form").serialize() , function(data,status,xhr)
{
my_data = data;
})
我试着把它改成
$.post("/settings/filter", {$("#filter_form").serialize(), extra_variable:'extra1'} , function(data,status,xhr)
但这是错误的,怎么办?