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.
我做了一个隐藏的html字段 <input type="hidden" name="t" id="t" value="something">
<input type="hidden" name="t" id="t" value="something">
<? // value here?>
我如何在不提交页面的情况下获得此值
如果不提交 from,就无法在 PHP 中获取它的值,而是使用 JavaScript 来获取它的值。
例子:
alert(document.getElementById('t').value);
你不能。PHP是服务器端。这意味着,一旦页面完成加载,PHP 的工作就完成了。
您可以使用 AJAX 将表单值发送到您的 PHP 脚本,这将在后台 - 无需提交或刷新。
编辑:您的意思是要问,生成页面后如何获取隐藏输入的值?