0

我正在尝试在内容页面(参考母版页)中使用 javascript 方法来获取当前屏幕尺寸,并将其写入标签。

到目前为止,我没有运气。我尝试在主页面和内容页面中都这样做,但该方法根本不起作用。

有人可以为此提供解决方案吗?

母版页:

<head runat="server">
    <title>Lake, Smit People</title>
    <!--[if IE ]>  
     <link rel="stylesheet" type="text/css" href="ProfileStypeSheetIE.css" />
    <![endif]-->  
    <!--[if !IE]>-->  
    <link href="ProfileStypeSheet.css" rel="stylesheet" type="text/css" />
    <!--<![endif]-->  

    <asp:ContentPlaceHolder id="head" runat="server">
    </asp:ContentPlaceHolder>

    <style type="text/css">
        .style1 { width: 378px; }
    </style>
</head>

默认.aspx

<asp:Content ID="Content5" ContentPlaceHolderID="head" Runat="Server">

<script type="text/javascript">

    var height = screen.height;
    document.getElementById('<%= hiddenLabel.ClientID%>').value = height;

</script>

</asp:Content>
4

2 回答 2

1

您好,您可以尝试使用这些行,您的具体情况是第三个(clientHeight 和 clientWidth)

document.body.scrollWidth, document.body.scrollHeight // for the full size of the document
 
document.body.offsetWidth, document.body.offsetHeight //to the displayed size
 
document.body.clientWidth, document.body.clientHeight //customer for size displayed
于 2012-08-06T12:48:43.653 回答
0

你试过跟随吗?

<a href="javascript:alert
  ('Your resolution is ' + screen.width + 'x' + screen.height);">
     Click for your screen resolution </a>
于 2012-08-06T12:49:33.230 回答