我有$ http.get请求
function a(event) {
var target = $(event.currentTarget);
$http.get(url).then(function() {
},
function() {
//Not able to access target.
});
}
在错误回调中,目标变量未定义。为什么呢?
答案 0 :(得分:0)
并不是说您无法访问目标变量,而且$(event.currentTarget)未定义。
使用:
var target = event.target;