我已按照here
写的答案但有些我怎么也无法在我的代码中获取值。
下面是我的代码示例
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
</script>
<script type="text/javascript">
$(document).ready(function () {
$("#width").val() = $(window).width();
$("#height").val() = $(window).height();
});
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:HiddenField ID="width" runat="server" />
<asp:HiddenField ID="height" runat="server" />
<asp:ImageButton ID="MySearchButton" runat="server" Height="38" ImageUrl="~/Images/search-button-without-text-md.png" OnClick="MySearchButton_Click" />
</form>
</body>
</html>
这是我的代码
protected void MySearchButton_Click(object sender, ImageClickEventArgs e)
{
var BrowserWidth = width.Value;
var BrowserHeight = height.Value;
}
但有些我无法获得浏览器的高度和宽度。值为空。有人可以告诉我这里我做错了什么。
答案 0 :(得分:3)
尝试http://api.jquery.com/val/#val2
$(document).ready(function () {
$("#width").val($(window).width());
$("#height").val($(window).height());
});
$.prototype.val
在调用w / o参数和setter w /参数时充当混合get / set,即getter。 $inst.val()
- 获取字段值。 $inst.val(value)
- 设置字段值。