gpt4 book ai didi

jquery - 如何使用 jQuery 将某些内容添加到序列化表单值中?

转载 作者:行者123 更新时间:2023-12-01 04:25:06 29 4
gpt4 key购买 nike

我无法弄清楚这个的语法。

这是我的代码:

$('select[id^="lookup_"]').change(function() {
var d = $("#lookupform").serializeArray();

// This is the problem line
d.push("field=" + $(this).id);

hash = { type: "POST", url: "/map/details", data: d };
$.ajax(hash);
return false;
});

我知道问题线完全错误。我基本上想让服务器端知道提交来自哪里。有人可以帮忙吗?

最佳答案

这应该做:

d.push( { field: this.id } );

关于jquery - 如何使用 jQuery 将某些内容添加到序列化表单值中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7019271/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com