这是我的代码:
...
$('#collection_menu ul li').click(function(e) {
e.preventDefault();
e.stopPropagation();
shoesApparaissent();
});
...
function shoesApparaissent() {
$.ajax({
async:true,
url : hrefCollection,
type : 'GET',
dataType : 'json'
}).success(function(data) {
console.log("data: " + data);
}).fail(function(e, str) {
console.log(e+'\n'+str);
});
...
在我重新加载包含代码的页面之前,此代码似乎适用于 FF、Safari、Opera 和所有其他导航器(Windows 7 上的 IE 除外)。
当我触发点击事件时,会调用函数“shoesApparaissent()”,并且 $.ajax 不会触发成功或失败事件(控制台中不会出现任何内容)。
我不确定这里的问题是什么,有什么想法吗?