這是做事的正確方式。另外我在這裏通過繞過this
方面_this在那裏做在jquery中傳遞「this」上下文
var messages = {
getLoadMore : function(_this){
...............
},
getSwappingData : function(_this){
.................
},
}
jQuery('.js-message-swap').live('click', function(){
_this = jQuery(this);
messages.getSwappingData(_this);
return false;
});
你不一定需要'_this = jQuery(this);'直接將它作爲參數傳遞。 –
僅供參考,'.live()'不推薦使用,您應該使用'.on()'。 – Barmar