jquery load 从加载的 php 文件中获取变量

发布于 2024-10-25 17:30:35 字数 154 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

囍笑 2024-11-01 17:30:35
$("#feeds").load("feeds.php", {limit: 25}, function(){
alert("The last 25 entries in the feed have been loaded");
});

而 limit 是您的姓名,25 是参数的值,

请参阅:API 了解更多信息

$("#feeds").load("feeds.php", {limit: 25}, function(){
alert("The last 25 entries in the feed have been loaded");
});

whereas limit is your name and 25 the value of the parameter

see: the API for more information on this

一曲爱恨情仇 2024-11-01 17:30:35

我能想到的最简单的方法是有一些隐藏字段包含您想要在页面加载的数据。然后,您可以在加载事件后使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文