jQuery是一種流行的JavaScript庫,它提供了許多常用的交互功能和UI效果。其中包括各種類型的消息框、提示框和警告框。下面是幾個常見的jQuery提示框。
// 消息框 $.alert('Hello world!'); // 確認框 $.confirm('Are you sure?').then(function() { // 用戶點擊“確定”按鈕 }, function() { // 用戶點擊“取消”按鈕 }); // 輸入框 $.prompt('What is your name?').then(function(result) { // 用戶輸入回調函數 }); // 警告框 $.alert({ title: 'Warning!', content: 'Something went wrong.', icon: 'fa fa-warning' }); // 提示框 $.alert({ title: 'Tip', content: 'Please fill in all required fields.', icon: 'fa fa-info', type: 'blue' });
以上是一些常見的jQuery提示框的示例,每種類型的提示框都有不同的選項和參數。jQuery提示框讓網頁的交互效果更加友好,有助于提高用戶體驗。