不過prompt在IE上,會出現阻擋訊息,這時我們可以用jQuery Alert Dialogs來達成
官方展示頁:http://abeautifulsite.net/notebook_files/87/demo/
JQuery Alert Dialogs備存檔案載點
Basic Examples
Alert
jAlert('This is a custom alert box', 'Alert Dialog');
Confirm
jConfirm('Can you confirm this?', 'Confirmation Dialog', function(r) {
jAlert('Confirmed: ' + r, 'Confirmation Results');
});
Prompt
jPrompt('Type something:', 'Prefilled value', 'Prompt Dialog', function(r) {
if( r ) alert('You entered ' + r);
});
With HTML
jAlert('You can use HTML, such as bold, italics, and underline!');
沒有留言:
張貼留言