JavaScript

超轻量级php框架startmvc

JavaScript的级联函数用法简单示例【链式调用】

更新时间:2020-08-18 17:30:01 作者:startmvc
本文实例讲述了JavaScript的级联函数用法。分享给大家供大家参考,具体如下:级联函数级

本文实例讲述了JavaScript的级联函数用法。分享给大家供大家参考,具体如下:

级联函数

级联函数就是在对象调用中通过点的方式串联调用,在jQuery中就是链式调用, 其关键点就是在内部 return this 返回自身

应用


function Person() {
 this.name = '';
 this.age = 0;
 this.weight = 10;
}
Person.prototype = {
 setName:function(name){
 this.name = name;
 return this;
 },
 setAge:function(age){
 this.age = age;
 return this;
 },
 setWeight:function(weight) {
 this.weight = weight;
 return this;
 }
}
var p = new Person();
p.setName('Joh').setAge(26).setWeight(80);
console.log(p); // {name: "Joh", age: 26, weight: 80}

这里使用在线HTML/CSS/JavaScript代码运行工具:http://tools.jb51.net/code/HtmlJsRun测试上述代码,可得如下运行结果:

JavaScript 级联函数 链式调用