gpt4 book ai didi

javascript - 使用 if(cond) else if(same Cond) 检查相同条件两次是什么意思?

转载 作者:行者123 更新时间:2023-11-28 18:29:11 25 4
gpt4 key购买 nike

我正在阅读一个名为 Panda.js 的游戏引擎。核心中有一个方法检查浏览器是否支持全屏,但我不明白这段代码:

if (this.system.canvas.requestFullscreen)
this.system.canvas.requestFullscreen();
else if (this.system.canvas.requestFullScreen)
this.system.canvas.requestFullScreen();

最佳答案

如果你仔细观察,你会发现它们的情况并不相同。这两种方法是不同的,一种是资本,一种不是。我猜开发人员用小写字母表示它不是全屏,用大写字母表示全屏。无论哪种方式,都不是相同的条件。

if (this.system.canvas.requestFullscreen)
this.system.canvas.requestFullscreen();
else if (this.system.canvas.requestFullScreen)
this.system.canvas.requestFullScreen();`

屏幕中的 S 发生变化。

关于javascript - 使用 if(cond) else if(same Cond) 检查相同条件两次是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38472558/

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