-6

是否可以找出浏览器的窗口宽度,然后将其作为隐藏字段中的值?

先感谢您。

更新:我知道我应该熟悉 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>
4

2 回答 2

2
$("#yourHiddenFieldId").val($(window).width());
于 2013-04-15T11:07:06.193 回答
0
var MyWindowwidth = $(window).width();     // get Width 
$("#idOfMyHiddenField").val(MyWindowwidth); // Put width in your Hidden field with id :idOfMyHiddenField
于 2013-04-15T11:10:13.477 回答