获得窗口宽度
Posted hlhlz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获得窗口宽度相关的知识,希望对你有一定的参考价值。
<html>
<head>
<script type="text/javascript" src="../jquery/jquery.js" tppabs="http://www.w3school.com.cn/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".btn1").click(function(){
$("#span1").text($(window).width());
$("#span2").text($(document).width());
});
});
</script>
</head>
<body>
<p>窗口的宽度是 <span id="span1">unknown</span> px。</p>
<p>文档的宽度是 <span id="span2">unknown</span> px。</p>
<button class="btn1">获得宽度</button>
<p>在本例中,窗口和文档的宽度是相同的,因为它们在 iframe 中显示。</p>
</body>
</html>
以上是关于获得窗口宽度的主要内容,如果未能解决你的问题,请参考以下文章