JavaScript中的availWidth属性是什么?

使用screen.availWidth属性返回用户屏幕的宽度。结果将以像素为单位,并且不会包含任务栏功能。

示例

您可以尝试运行以下代码来学习如何使用JavaScript中的screen.availWidth属性-

<!DOCTYPE html>
<html>
   <body>
      <script>
         document.write("Width of the user’s screen: "+screen.availWidth);
      </script>
   </body>
</html>