Chinaunix首页 | 论坛 | 博客
  • 博客访问: 317319
  • 博文数量: 128
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1611
  • 用 户 组: 普通用户
  • 注册时间: 2013-08-19 11:49
文章分类

全部博文(128)

文章存档

2018年(2)

2016年(2)

2014年(10)

2013年(114)

我的朋友

分类: Web开发

2013-11-06 11:12:40

  js函数一般都是返回一个值,在本例教程中将为大家介绍下如何返回多个返回值,喜欢的朋友可以了解下

   代码如下:

  var w = getClientSize().width;

  var h = getClientSize().height - 97;

   代码如下:

  function getClientSize() {

  var a = h = 0;

  if (window.innerHeight) {

  a = window.innerWidth;

  h = window.innerHeight

  } else {

  if (document.documentElement && document.documentElement.clientHeight) {

  a = document.documentElement.clientWidth;

  h = document.documentElement.clientHeight

  } else {

  a = document.body.clientWidth;

  h = document.body.clientHeight

  }

  }

  return {

  width: a,

  height: h

  };

  }
阅读(444) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~