Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在同一文件中的 PHP 代码中使用 jQuery 变量值而不调用 ajax?请帮助我这是否可能。这里给出下面的 jQuery 和 PHP 代码。
好吧,您可以使用jquery.session插件来存储 Session 变量,然后您可以使用 php 代码访问该变量。
jquery.session
示例代码
$(function() { $.session("myVar", "value"); });
在 PHP 中
echo $_SESSION['myVar'];