You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
408 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script>
const screenWidth = window.screen.width;
// 获取屏幕高度
const screenHeight = window.screen.height;
console.log(`屏幕分辨率为: ${screenWidth}px x ${screenHeight}px`);
alert(`屏幕分辨率为: ${screenWidth}px x ${screenHeight}px`)
</script>
</body>
</html>