gpt4 book ai didi

php - 通过 php 从表单中检索 javascript 输出

转载 作者:行者123 更新时间:2023-11-30 08:59:43 24 4
gpt4 key购买 nike

我在表单中有一个隐藏字段,我试图在其中获取用户的屏幕分辨率。然后在处理端通过 php 检索屏幕分辨率。不幸的是,我对 javascript 的理解非常有限。这是我所拥有的。如果有任何帮助,我将不胜感激。

<head>
<script type="text/javascript">
function xy(){
document.write(screen.width + "x" + screen.height);
document.getElementById('xy').value;
}
</script>
</head>




<form action="" method=post >

//other fields here

<input type="hidden" name="xy" id="xy" value=""/>
<input type=submit name="button" value="button" />
</form>

当我查看页面的源代码时,我不应该看到设置为例如“1366x768”的值吗?现在在处理方面,我想像这样用 php 提取信息。

if(isset($_POST['xy']) && (!empty($_POST['xy'])){
$blah = $_POST['xy'];
//sanatize $blah;
}

最佳答案

你可以使用

<script type="text/javascript">
function setResolution()
{
document.getElementById('xy').value = screen.width + "x" + screen.height;
}
</script>

然后,在提交时,确保函数被执行

<input type="submit" name="button" value="button" onclick="setResolution()" />

关于php - 通过 php 从表单中检索 javascript 输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10261195/

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