如何在show()里面自动执行代(e)的方法?
我写了一个点击事件,点击的时候可以执行,但是我想在show()内自动调用该方法。可是这个方法是带(e)的。要获取页面的data-参数
这种怎么可以让它自动执行。
1.如果这样调用that.logistics_time(),就会报错,说 Cannot read property ‘currentTarget’ of undefined;
2.如果这样调用that.logistics_time(e),就会报错,说 e is not defined;at api request success callback function
test:function(e){
var index = parseInt(e.currentTarget.dataset.index);
…
}
求解决办法。