我试图模拟点击全屏游戏,如shellshock.io或narrow.one(我正在尝试的)。我该如何用JavaScript做到这一点?如果可能的话,你能在游戏中模拟按键吗?
mlmc2os51#
请尝试以下操作。
<div class="fullScreenElement"> ... <button id="elementYouWantToClick">Example</button> ... </div>
document.getElementById('elementYouWantToClick').click(); // make sure this el is within the fullscreen element
1条答案
按热度按时间mlmc2os51#
请尝试以下操作。