我有以下标签:
<a href="#" class="Test" data-url="/api/users/unlock">Test</a>
以及以下 JQuery:
$('a.Test').click(function (e) {
alert(e.data); >> This returns null
jQuery.support.cors = true;
$.ajax({
url: e.data('url'),
type: 'GET',
dataType: 'json',
success: function (data) {
alert(data)
},
error: function () {
alert("Failure!");
}
});
});
基本上,我试图在 Ajax 调用中使用 data-url 的 url。
这不起作用,当我尝试 alert(e.data) 时,我得到空值。
我究竟做错了什么?
谢谢你!