jquery load 从加载的 php 文件中获取变量
我正在使用 jquery .load 加载 php 文件。
使用 load 它只是加载我的 php 文件并将其显示到我的选项卡中,效果很好。
但知道我想将一些变量从加载的文件传递回主文件。
我该如何解决这个问题?
非常感谢你的帮助
i'm loading a php file with jquery .load.
with load it just loads my php file and displays it into my tabs which works fine.
but know i wanna pass some variable from the loaded file into the mainfile back.
how can i solve this ?
thanks a lot for you help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
而 limit 是您的姓名,25 是参数的值,
请参阅:API 了解更多信息
whereas limit is your name and 25 the value of the parameter
see: the API for more information on this
我能想到的最简单的方法是有一些隐藏字段包含您想要在页面加载的数据。然后,您可以在加载事件后使用 jQuery 简单地获取值。
The easiest way I can think of would be to to have some hidden field containing the data you want in the page getting loaded. You could then simply get the values using jQuery after the load event.