Posted in Javascript onMarch 26, 2019
本文实例讲述了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.3water.com/code/HtmlJsRun测试上述代码,可得如下运行结果:
希望本文所述对大家JavaScript程序设计有所帮助。
JavaScript的级联函数用法简单示例【链式调用】
- Author -
Johnny丶me声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@