我有這個jquery確認碼,我嘗試將其轉換爲甜蜜提示確認。如何將jquery確認轉換爲甜蜜警報確認?
我目前的jQuery:
$('#nav-logout').click(function(){
var res = confirm('Would you like to log out from the system?');
if(res) {
return true;
}
return false;
});
有人可以幫助我如何將此代碼轉換成在上面的代碼甜美警報確認基地。謝謝!
http://t4t5.github.io/sweetalert/ – Rayon