我第一次使用显示模块模式并逐渐掌握它。
在我的html中,我有这样的东西:
<a href='#' onclick='myApp.doStuff'>Click here</a>
在Javascript中我有:
var myApp = (function () {
var doStuff = function() {
//Get clicked element and modify it with jQuery?
}
return {
doStuff: doStuff
}
})();
如何在上面指示的位置获取单击的元素?