HTML DOM width 屬性
定義和用法
width 屬性聲明了顯示瀏覽器的屏幕的寬度,以像素計(jì)。
語法
screen.width
實(shí)例
<html> <body> <script type="text/javascript"> document.write("<p>Width: ") document.write(screen.width + "</p>") </script> </body> </html>
width 屬性聲明了顯示瀏覽器的屏幕的寬度,以像素計(jì)。
screen.width
<html> <body> <script type="text/javascript"> document.write("<p>Width: ") document.write(screen.width + "</p>") </script> </body> </html>