首页 > 开发 > JS > 正文

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

2024-05-06 16:49:26
字体:
来源:转载
供稿:网友

本文实例讲述了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}

可得如下运行结果:

JavaScript,级联函数,链式调用

希望本文所述对大家JavaScript程序设计有所帮助。


注:相关教程知识阅读请移步到JavaScript/Ajax教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表