JQuery获取各种宽度、高度(format函数)实例
代码如下:
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<title>获取页面宽度</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$.format = function (source, params) {
if (arguments.length == 1)
return function () {
var args = $.makearray(arguments);
args.unshift(source);
return $.format.apply(this, args);
};
if (arguments.length > 2 && params.constructor != array) {
params = $.makearray(arguments).slice(1);
}
if (params.constructor != array) {
params = [params];
}
$.each(params, function (i, n) {
source = source.replace(new regexp("\\{" + i + "\\}", "g"), n);
});
return source;
};
/*------------以上是字符串format函数----------------*/
$(document).ready(function () {
$("button").click(function () {
var d=$("#p1");
var txt = "";
txt += $.format("width(): {0}</br>", d.width());
txt += $.format("height(): {0}</br>", d.height());
txt += $.format("inner width: {0}</br>", d.innerwidth());
txt += $.format("inner height: {0}</br>", d.innerheight());
txt += $.format("outer width: {0}</br>", d.outerwidth());
txt += $.format("outer height: {0}</br>", d.outerheight());
txt += $.format("outerwidth(true): {0}</br>", d.outerwidth(true));
txt += $.format("outerheight(true): {0}</br>", d.outerheight(true));
txt += $.format("html文档宽度: {0}</br>", $(document).width());
txt += $.format("html文档高度: {0}</br>", $(document).height());
txt += $.format("视口宽度: {0}</br>", $(window).width());
txt += $.format("浏览器视口高度: {0}</br>", $(window).height());
$("#p1").html(txt);
});
});
</script>
</head>
<body>
<p id="p1" style="height:auto;width:300px;padding:10px;margin:3px;border:1px solid blue;background-color:lightblue;"></p>
<br/>
<button>显示当前各种尺寸</button>
<p><a href="https://4welove.taobao.com" target="_blank">手机话费、q币、游戏充值</a></p>
<p>width() - 返回元素的宽度。</p>
<p>height() - 返回元素的高度。</p>
<p>innerwidth() 方法返回元素的宽度(包括内边距)。 </p>
<p>innerheight() 方法返回元素的高度(包括内边距)。 </p>
<p>outerwidth() 方法返回元素的宽度(包括内边距和边框)。 </p>
<p>outerheight() 方法返回元素的高度(包括内边距和边框)。 </p>
<p>outerwidth(true) 方法返回元素的宽度(包括内边距、边框和外边距)。 </p>
<p>outerheight(true) 方法返回元素的高度(包括内边距、边框和外边距)。 </p>
<p>返回文档(html 文档)$(document).height()的高度</p>
<p>返回窗口(浏览器视口)$(window).height()的高度</p>
</body>
</html>