我无法理解 jQuery 链接是如何工作的。
jQuery("div").attr("id", "_id")
.hide()
.show();
我做了类似链接的事情,但我不确定它是否与 jQuery 使用的逻辑相同。
var fun = (function (parma) {
return function () {
return {
start: function () {
console.log("start");
return this;
},
mid: function () {
console.log("mid");
return this;
},
last: function () {
console.log("last");
return this;
}
}
}
})();
// Working
fun().start()
.mid()
.last();