{"id":2913,"date":"2016-03-15T09:09:38","date_gmt":"2016-03-15T01:09:38","guid":{"rendered":"http:\/\/blog.hoyo.idv.tw\/?p=2913"},"modified":"2016-03-15T15:18:18","modified_gmt":"2016-03-15T07:18:18","slug":"javascript-%e8%87%aa%e5%ae%9a%e7%be%a9-alert-confirm","status":"publish","type":"post","link":"https:\/\/blog.hoyo.idv.tw\/?p=2913","title":{"rendered":"Javascript \u81ea\u5b9a\u7fa9 alert(), confirm()"},"content":{"rendered":"<p>&nbsp;<\/p>\n<p>\u53c3\u8003\u4f86\u6e90\uff1ahttps:\/\/rs.twnic.net.tw\/cgi-bin\/supermarket.cgi<\/p>\n<pre class=\"nums:true lang:js decode:true \">window.alert = function(msg, caption) {\r\n    \/\/console.log(msg);\r\n    caption = caption || '\u7cfb\u7d71\u8a0a\u606f'\r\n\r\n    var newDiv = $(document.createElement('div'));\r\n    $(newDiv).html(msg);\r\n    $(newDiv).dialog({\r\n        modal: true,\r\n        resizable: false,\r\n        title: caption,\r\n        width: $(window).width()*0.3,\r\n        position: { my: \"top\", at: \"top\", of: window },\r\n        show: {\r\n            effect: \"blind\",\r\n            duration: 300\r\n        },\r\n        hide: {\r\n            effect: \"fade\",\r\n            duration: 300\r\n        },\r\n        buttons: {\r\n            Ok: function() {\r\n                $( this ).dialog( \"close\" );\r\n            }\r\n        }\r\n    });\r\n}\r\n\r\nwindow.confirm = function (message, callback, caption) {\r\n    caption = caption || 'Confirmation'\r\n\r\n    $(document.createElement('div')).attr({\r\n        title: caption,\r\n        'class': 'dialog'\r\n    }).html(message).dialog({\r\n        position: { my: \"top\", at: \"top\", of: window },\r\n        dialogClass: 'fixed',\r\n        buttons: {\r\n            \"OK\": function () {\r\n                $(this).dialog('close');\r\n                callback();\r\n                return true;\r\n            },\r\n            \"Cancel\": function () {\r\n                $(this).dialog('close');\r\n                return false;\r\n            }\r\n        },\r\n        close: function () {\r\n            $(this).remove();\r\n        },\r\n        draggable: false,\r\n        modal: true,\r\n        resizable: false,\r\n        width: 'auto'\r\n    });\r\n};\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p>--<\/p>\n<p>&nbsp;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p class=\"pvc_stats all \" data-element-id=\"2913\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> &nbsp;1,666&nbsp;total views, &nbsp;2&nbsp;views today<\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; \u53c3\u8003\u4f86\u6e90\uff1ahtt...<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p class=\"pvc_stats all \" data-element-id=\"2913\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> &nbsp;1,666&nbsp;total views, &nbsp;2&nbsp;views today<\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[31],"tags":[],"_links":{"self":[{"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=\/wp\/v2\/posts\/2913"}],"collection":[{"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2913"}],"version-history":[{"count":4,"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=\/wp\/v2\/posts\/2913\/revisions"}],"predecessor-version":[{"id":2917,"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=\/wp\/v2\/posts\/2913\/revisions\/2917"}],"wp:attachment":[{"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2913"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2913"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2913"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}