私は次のものを持っています:
<button id="refreshLink" class="blue" type="button" title="Refresh Grid"
data-entity="Topic"
data-href="/Admin/Contents/Reference">
<span class="center-icon sprite-arrow-circle"></span></button>
そしてこのjQueryコード:
$('#refreshLink')
.click(function () {
if ($(this).hasClass("blue")) {
$(this).removeClass('blue').addClass('grey');
refreshGrid($(this).attr('data-entity')); ;
}
return false;
});
これにより複数回のクリックが停止すると思いましたが、それでもユーザーが複数回クリックして複数回更新できるようです。
jQuery を使用してリンクを無効および有効にする方法はありますか? また、ユーザーが複数回クリックした場合にクリックが入るキューはありますか?