前端執行程式前, 如何讓用戶確認再執行?
加上 $.confirm()的方法即可,如:

function sureexec(){
$.confirm( "確認執行?", function() { 
   alert('確認執行!');
  });
}