代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<script type="text/javascript">
function New(Constructor) {
// 创建空对象
var res = {}
// 将空对象的__proto__ 指向构造函数的prototype
if(Constructor.prototype !== null) {
res.__proto__ = Constructor.prototype
}
// 修改构造函数内部this的指向
let ret = Constructor.apply(res, Array.prototype.slice.call(arguments, 1))
// 构造函数有返回值的情况
if((typeof ret === 'object' || typeof ret === 'function') && ret !== null) {
return ret
}
// 返回对象
return res
}
function Person(name,age){
this.name = name
this.age = age
return this
}
Person.prototype.getName = function(){
return this.name
}
let person = New(Person,'WeChain',24)
let name = person.getName()
console.log(name)
</script>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。