參考來源:https://rs.twnic.net.tw/cgi-bin/supermarket.cgi
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
window.alert = function(msg, caption) { //console.log(msg); caption = caption || '系統訊息' var newDiv = $(document.createElement('div')); $(newDiv).html(msg); $(newDiv).dialog({ modal: true, resizable: false, title: caption, width: $(window).width()*0.3, position: { my: "top", at: "top", of: window }, show: { effect: "blind", duration: 300 }, hide: { effect: "fade", duration: 300 }, buttons: { Ok: function() { $( this ).dialog( "close" ); } } }); } window.confirm = function (message, callback, caption) { caption = caption || 'Confirmation' $(document.createElement('div')).attr({ title: caption, 'class': 'dialog' }).html(message).dialog({ position: { my: "top", at: "top", of: window }, dialogClass: 'fixed', buttons: { "OK": function () { $(this).dialog('close'); callback(); return true; }, "Cancel": function () { $(this).dialog('close'); return false; } }, close: function () { $(this).remove(); }, draggable: false, modal: true, resizable: false, width: 'auto' }); }; |
--
1,234 total views, 1 views today