• [织梦吧]唯一域名:www.dedecms8.com,织梦DedeCMS学习平台.

当前位置: > 网页制作 > JavaScript >

JS面向对象教程(7)

来源: www.dedecms8.com 编辑:织梦吧 时间:2012-02-06点击:

  }

  return result;

  }

  Object.getPrototypeOf() 函数

  function proto(object) {

  return !object? null

  : '__proto__' in object? object.__proto__

  : /* not exposed? */ object.constructor.prototype

  }

  bind 函数

  var slice = [].slice

  function bind(fn, bound_this) { var bound_args

  bound_args = slice.call(arguments, 2)

  return function() { var args

  args = bound_args.concat(slice.call(arguments))

  return fn.apply(bound_this, args) }

  }

  原文:http://coolshell.cn/articles/6441.html

About D8

  • ©2014 织梦吧(d8) DedeCMS学习交流平台
  • 唯一网址 www.DedeCMS8.com 网站地图
  • 联系我们 1978130638@qq.com ,  QQ