gpt4 book ai didi

javascript - 尝试通过 html 显示显示器的宽高比

转载 作者:行者123 更新时间:2023-11-28 20:04:52 26 4
gpt4 key购买 nike

<SCRIPT language="JavaScript">

height = screen.height;
width = screen.width;
aspect = width/height;

if (width==1920)(height==1200)
{
x="16:10";
}
else if (width==1680)(height==1200)
{
x="16:9";
}
else
{
x="unknown";
}

document.write( x );

</SCRIPT>

这是我的确切代码。我今天早上刚开始使用 javascript。目前没有显示任何内容。

最佳答案

这不是正确的语法:

if (width==1920)(height==1200)

使用&&(与)运算符判断两个条件是否都为真:

if (width==1920 && height==1200)

附注要获得更通用的生成 x 字符串的解决方案,请将宽度和高度视为分数的分子和分母,并通过除以公素因子来简化分数。

关于javascript - 尝试通过 html 显示显示器的宽高比,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21002790/

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