我有一个链接:
<a id="my_link" data-method="post" data-confirm="Are you sure you want to do this?" class="btn btn-success disabled" href="#">My Link</a>
以及以下 jQuery(在 CoffeeScript 中):
$('#my_link').click (e) ->
if $(this).hasClass('disabled')
e.preventDefault()
else
# Do other stuff
不幸的是,如果它有 类disabled
,确认对话框仍然出现。我以为e.preventDefault()
会做的伎俩,但可惜它没有。
我该如何防止这种情况?