jQuery Post:附加数据以发布
我在 WordPress 页面上使用 jQuery 的帖子。
var thename = jQuery("input#name").val();
jQuery.post(the_ajax_script.ajaxurl, jQuery("#theForm").serialize(),
function(response_from_the_action_function){
jQuery("#response_area").html(response_from_the_action_function);
});
它以表格形式发布所做的选择。是否可以将数据附加到帖子中。因此,除了表单数据之外,我还需要在 jQuery 帖子中添加一些经纬度。我该怎么办呢。是否可以?
谢谢你。
-拉克斯米迪
I'm using jQuery's post on a WordPress page.
var thename = jQuery("input#name").val();
jQuery.post(the_ajax_script.ajaxurl, jQuery("#theForm").serialize(),
function(response_from_the_action_function){
jQuery("#response_area").html(response_from_the_action_function);
});
It posts the selections made in a form. Is it possible to append data to a post. So in addition to the form data, I need a couple lat longs added to the jQuery post. How can I do that. Is it possible?
Thnak you.
-Laxmidi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
.post()
将字符串作为第二个参数,因此您可以使用+
后跟您的字符串来连接自定义字符串。不过,请务必小心;该字符串必须正确格式化为 URL,因此您需要用
&
分隔的key=value
对。在上面的示例中,您将看到
+ "&foo=bar
。第一个&
完成由.serialize(),然后
foo=
是一个键,后面是bar
作为值。如果您想在之后添加更多值,您可以执行以下操作:
.post()
takes a string as the second argument, so you can concatenate a custom string using+
followed by your string.Do be careful, though; the string has to be correctly formatted as a URL, so you need
key=value
pairs separated by&
s.In the example above, you'll see
+ "&foo=bar
. The first&
finishes the last value created by.serialize()
, thenfoo=
is a key, followed bybar
as the value.If you want to add more values afterwards, you can do something like this:
试试这个,
$.post
可以使用数组try this,
$.post
can use arrays