为什么我不能使用 esitFullscreen 方法退出全屏?

Why I can't exit the Fullscreen using esitFullscreen method?

每当我尝试在控制台中退出全屏时,它都会显示 exitFullscreen 不是一个函数

<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title></title>
</head>

<body>
  <button onclick="o()">O</button>
  <button onclick="x()">X</button>
  
<script type="text/javascript" charset="utf-8">
  function o(){
   document.documentElement.requestFullscreen();
  }
   function x(){
   document.documentElement.exitFullscreen();
   }
  
</script>
</body>

</html>

在上面的代码中,通过单击按钮 x 我应该退出全屏,但它没有发生

看看the documentation

requestFullscreen 元素上的方法

exitFullscreendocument

上的一个方法

使用此退出全屏

document.exitFullscreen();