gpt4 book ai didi

javascript - jquery $.post 发布数据

转载 作者:行者123 更新时间:2023-11-28 19:53:10 25 4
gpt4 key购买 nike

这是我的发布方法:(代码按照教程)

 $.post('test.htm',{name:test_name"}, function (data) {
$('#feedback').html(data);
});

我想在 test.html 上附加'name'参数,然后在index.html页面上检索完整的数据

测试.html

<body>
<div> welcome + //How to append name here ?? </div>
</body>

我可以通过 "$_POST" 命令在 php 上执行此操作....在 HTML 页面上还有什么替代方法..

最终数据将显示在index.htm中

<body>
<input id="button" type="submit" value="Go" />
<div id="feedback"> </div>

</body>

类似帖子:

How do I POST this data to an http server?
jQuery post not returning data
Jquery Post Data
jQuery - Redirect with post data

最佳答案

$.post 接受要传递到服务器的对象,如下所示

$.post('test.htm', {name: "test_name"}, function (data) {
$('#feedback').html(data);
});

当然,在 .htm 页面中没有任何东西可以捕获请求,您需要某种服务器端语言。

关于javascript - jquery $.post 发布数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23091755/

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