<script type="text/javascript"> document.write( "屏幕宽度:"+window.screen.width;); document.write( "屏幕高度:"+screen.height); </script>
为啥没有显示?
<script type="text/javascript">
document.write( "屏幕宽度:"+window.screen.width);
document.write( "屏幕高度:"+screen.height);
</script>
第二行多了一个分号,被认为语句结束了,所以显示不出
你写错了,document.write( "屏幕宽度:"+window.screen.width;);
改为document.write( "屏幕宽度:"+screen.width);
去掉window 和一个 ;号