2
無法使用我有這個jQuery的功能這功能齊全
$("#edit-modal").animate({ width: "90%" }, 400, function() {
this.registrationsPanelWidth = $("#edit-modal").width() - this.modalWidth - 20;
console.log(this.modalWidth);
});
然而在function()
是好像this.
不知道或可用,這意味着console.log(this.modalWidth);
結果不確定。
如何在我的完整功能中使用我的this.property
?
那麼你應該使用'內回調self' – yurzui
@yurzui是正確的。用'self'替換JQuery中的'this'。 – Ethilium
對不起,你們都需要更多的咖啡。示例已更新。 –