将参数从一个页面上的 JS/Jquery 传递到另一页面上的 PHP
我正在寻找使用 POST 方法将参数从一个页面上的 javascript/jquery 传递到另一个页面上的 PHP 的最简单方法。
我应该提到这两个页面都是 WordPress 页面的 PHP 模板,但我想这应该不重要。
希望双方提供代码示例。
I'm looking for the simplest way to use the POST method for passing parameters from javascript/jquery on one page to PHP on another page.
I should mention that both pages are PHP templates for wordpress pages, but I guess it shouldn't matter.
Would appreciate examples for code on both sides.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
编辑1
如果您想指定要发送的自己的参数,请使用:
编辑2:如果您只想将自己的参数发布到页面(无ajax。简单的POST将打开页面,则执行以下操作)
像这样调用:-
代码取自 JavaScript post 请求(如表单提交)的答案
edit 1
incase you want to specify your own parameters to send then use:
Edit 2: if you only want to post your own parameters to a page (no ajax. simple POST which will open the page then do the following)
call like this:-
code taken from answer on JavaScript post request like a form submit
您可以使用查询字符串参数
或
在 php 页面中
编辑,
从评论中没有 JamesSmith 答案我认为您想在这种情况下重定向到其他页面
Page1.php
page2.php
另一个编辑
您可以在 page1 中有一个表单并将其发布到
page2.php 中的page2
you can use query string parameters
or
in the php page
EDIT
from the comment no JamesSmith answer i think you want to redirect to other page in that case
Page1.php
page2.php
yet another edit
you can have a form in page1 and post it to page2
in page2.php
你可以根据响应在ajax成功中做你想做的事情
you can do what you wish to do in ajax success according to response