我想知道当它在命名空间内时如何在 jquery 绑定中保存一个值。
var obj = obj || (obj ={
valuetosave:-1,
init:function(){
$("some selector").on("click",function(){
tmpval = I get some value here
how can asign 'tmpval' to obj.valuetosave if I can't use this because
is in the jquery scope
})
}
})
我知道无论是标题还是我的小描述都没有多大用处,我希望这个小例子可以说明我的问题。
谢谢