使用jquery POST后解析页面
jquery
$("#go").click(function() {
$.post("i/go.php", $("#form").serialize());
var code= '';
$("section").empty().html(code);
});
go.php 接受 POST 数据,然后在 中显示一些文本。 发送POST数据后如何获取
并显示在本页面?
jquery
$("#go").click(function() {
$.post("i/go.php", $("#form").serialize());
var code= '';
$("section").empty().html(code);
});
go.php accepts POST data, then displays some text in <section>
.
How to get <section>
after sending POST data and display it on this page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您根本不处理响应,只是发送请求:
You are not handling the response at all, just sending the request: