标签:function OLE 函数 console 调用 方法 pre class ons
用js的方式实现如jquery那样的方法连续调用
$("div").width(100).height(500).html(123);
var obj = {};
obj.func1 = function () {
console.log(‘func1‘);
return this;
};
obj.func2 = function () {
console.log(‘func2‘);
return this;
};
obj.func1().func2();
标签:function OLE 函数 console 调用 方法 pre class ons
原文地址:https://www.cnblogs.com/zzws/p/8934454.html