gpt4 book ai didi

javascript - 如何在 PHP 中使用 getElementById?

转载 作者:行者123 更新时间:2023-12-02 17:31:26 25 4
gpt4 key购买 nike

在一个php文件中,有一个名为"User"的文本框.

我使用cookie来保存user .

但是,我怎样才能做这样的事情呢?

$user = $_COOKIE['user'];
document.getElementById('User').value = '$user';

请帮忙。

最佳答案

您可以access cookie values directly in JavaScript 。但为了使您的代码可行,您只需要使用 PHP 标签和 echo 语句:

document.getElementById('User').value = '<?php echo $user; ?>';

或者,如果您使用 PHP 5.4+ 或启用了短 echo 标签:

document.getElementById('User').value = '<?= $user; ?>';

关于javascript - 如何在 PHP 中使用 getElementById?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23024284/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com