是否可以找出浏览器的窗口宽度,然后将其作为隐藏字段中的值?
先感谢您。
更新:我知道我应该熟悉 jQuery - 这是我使用代码的方式吗?
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.1.min.js" >/script>
<script type="text/javascript">
var MyWindowwidth = $(window).width();
$("#thew").val(MyWindowwidth);
</script>
</head>
<body>
<form id="form1" name="form1" method="get" action="">
<input type="hidden" id="thew" name="thew" value="">
<input type="submit" name="subm" id="subm" value="Submit" />
</form>
</body>
</html>