我需要在特定上下文中执行以下功能。
setTimeout(function () {
myFunction();
}, 1000 * 60);
var changeDateFormat = function () {
console.log(this); // this should be $('.myClass')
// but I need to set it from setTimeout
// any hints
};
PS:
我正在使用 Underscore.js 和 jQuery。