这是场景,我的内容是基于类异步加载的。因此,如果我有一个与类 ajaxLink 的链接,它会触发如下:
$('a.ajaxLink').click(function (e) {
e.preventDefault();
var container = $(this).parents('div.fullBottomContent');
var href = $(this).attr('href');
container.fadeOut('fast', function () {
$.ajax({
url: href,
dataType: "html",
type: "GET",
success: function (data) {
container.html(data);
BindEventHandlers();
container.fadeIn();
$.validator.unobtrusive.parse('form');
},
error: function () {
alert('An error has occurred');
}
});
});
});
都很可爱。现在,在一个实例中,我想向用户confirm
显示他们想要加载页面并放弃所有更改的警告,所以我写了这个:
$('a.addANewHotel').click(function (e) {
if (!confirm('Adding a new hotel will loose any unsaved changes, continue?')) {
e.stopPropagation();
}
});
现在我已经尝试过了return false
,e.preventDefault()
但e.stopPropagation();
不管第一种方法总是被解雇吗?如何防止触发额外的点击事件?这是事件的顺序吗?
看不出这有什么关系,但我的 HTML 是:
<a style="" href="/CMS/CreateANewHotel?regionID=3&destinationID=1&countryName=Australia" class="button wideBorderlessButton ajaxLink addANewHotel">Add a new hotel</a>