Devs.tw 是讓工程師寫筆記、網誌的平台。歡迎您隨手紀錄、寫作,方便日後搜尋!
easy & work
$(document).ready(function () {
$(".prevent-double-click-form").submit(function () {
$(this).find('button[type="submit"]').attr("disabled", true);
$(this).find('button[type="submit"]').text("處理中,請稍候...");
return true;
});
});