{"version":"1.0","provider_name":"\u9999\u6e2f\u6d78\u4fe1\u4f1a\u795e\u5b66\u9662","provider_url":"https:\/\/www.hkbts.edu.hk\/zh_cn","author_name":"wordpress_pce","author_url":"https:\/\/www.hkbts.edu.hk\/zh_cn\/?p=author\/wordpress_pce\/","title":"\u6559\u7267\u6301\u7e8c\u6559\u80b2\u4e2d\u5fc3\u8ab2\u7a0b - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"pKGBOzWtyZ\"><a href=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/pce\/\">\u6559\u7267\u6301\u7eed\u6559\u80b2\u4e2d\u5fc3\u8bfe\u7a0b<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/pce\/embed\/#?secret=pKGBOzWtyZ\" width=\"600\" height=\"338\" title=\"\u300a \u6559\u7267\u6301\u7eed\u6559\u80b2\u4e2d\u5fc3\u8bfe\u7a0b\u300b\u2014\u9999\u6e2f\u6d78\u4fe1\u4f1a\u795e\u5b66\u9662\" data-secret=\"pKGBOzWtyZ\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script>\n\/**\n * WordPress inline HTML embed\n *\n * @since 4.4.0\n * @output wp-includes\/js\/wp-embed.js\n *\n * Single line comments should not be used since they will break\n * the script when inlined in get_post_embed_html(), specifically\n * when the comments are not stripped out due to SCRIPT_DEBUG\n * being turned on.\n *\/\n(function ( window, document ) {\n\t'use strict';\n\n\t\/* Abort for ancient browsers. *\/\n\tif ( ! document.querySelector || ! window.addEventListener || typeof URL === 'undefined' ) {\n\t\treturn;\n\t}\n\n\t\/** @namespace wp *\/\n\twindow.wp = window.wp || {};\n\n\t\/* Abort if script was already executed. *\/\n\tif ( !! window.wp.receiveEmbedMessage ) {\n\t\treturn;\n\t}\n\n\t\/**\n\t * Receive embed message.\n\t *\n\t * @param {MessageEvent} e\n\t *\/\n\twindow.wp.receiveEmbedMessage = function( e ) {\n\t\tvar data = e.data;\n\n\t\t\/* Verify shape of message. *\/\n\t\tif (\n\t\t\t! ( data || data.secret || data.message || data.value ) ||\n\t\t\t\/[^a-zA-Z0-9]\/.test( data.secret )\n\t\t) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar iframes = document.querySelectorAll( 'iframe[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tblockquotes = document.querySelectorAll( 'blockquote[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tallowedProtocols = new RegExp( '^https?:$', 'i' ),\n\t\t\ti, source, height, sourceURL, targetURL;\n\n\t\tfor ( i = 0; i < blockquotes.length; i++ ) {\n\t\t\tblockquotes[ i ].style.display = 'none';\n\t\t}\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\tsource = iframes[ i ];\n\n\t\t\tif ( e.source !== source.contentWindow ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tsource.removeAttribute( 'style' );\n\n\t\t\tif ( 'height' === data.message ) {\n\t\t\t\t\/* Resize the iframe on request. *\/\n\t\t\t\theight = parseInt( data.value, 10 );\n\t\t\t\tif ( height > 1000 ) {\n\t\t\t\t\theight = 1000;\n\t\t\t\t} else if ( ~~height < 200 ) {\n\t\t\t\t\theight = 200;\n\t\t\t\t}\n\n\t\t\t\tsource.height = height;\n\t\t\t} else if ( 'link' === data.message ) {\n\t\t\t\t\/* Link to a specific URL on request. *\/\n\t\t\t\tsourceURL = new URL( source.getAttribute( 'src' ) );\n\t\t\t\ttargetURL = new URL( data.value );\n\n\t\t\t\tif (\n\t\t\t\t\tallowedProtocols.test( targetURL.protocol ) &&\n\t\t\t\t\ttargetURL.host === sourceURL.host &&\n\t\t\t\t\tdocument.activeElement === source\n\t\t\t\t) {\n\t\t\t\t\twindow.top.location.href = data.value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\tfunction onLoad() {\n\t\tvar iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),\n\t\t\ti, source, secret;\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\t\/** @var {IframeElement} *\/\n\t\t\tsource = iframes[ i ];\n\n\t\t\tsecret = source.getAttribute( 'data-secret' );\n\t\t\tif ( ! secret ) {\n\t\t\t\t\/* Add secret to iframe *\/\n\t\t\t\tsecret = Math.random().toString( 36 ).substring( 2, 12 );\n\t\t\t\tsource.src += '#?secret=' + secret;\n\t\t\t\tsource.setAttribute( 'data-secret', secret );\n\t\t\t}\n\n\t\t\t\/*\n\t\t\t * Let post embed window know that the parent is ready for receiving the height message, in case the iframe\n\t\t\t * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the\n\t\t\t * window will then (re-)send the height message right away.\n\t\t\t *\/\n\t\t\tsource.contentWindow.postMessage( {\n\t\t\t\tmessage: 'ready',\n\t\t\t\tsecret: secret\n\t\t\t}, '*' );\n\t\t}\n\t}\n\n\twindow.addEventListener( 'message', window.wp.receiveEmbedMessage, false );\n\tdocument.addEventListener( 'DOMContentLoaded', onLoad, false );\n})( window, document );\n\/\/# sourceURL=https:\/\/www.hkbts.edu.hk\/wp-includes\/js\/wp-embed.js\n<\/script>","description":"\u8ab2\u7a0b\u53ca\u5165\u5b78 \u8fd4\u56de\u4e3b\u9801 \u6559\u7267\u6301\u7e8c\u6559\u80b2\u4e2d\u5fc3\u8ab2\u7a0b \u7c21\u4ecb \u8cc7\u6e90\u5ba4 \u6bcf\u5b63\u5b78\u79d1 \u98b1\u98a8\u53ca\u66b4\u96e8\u4e0b\u4e4b\u8ab2\u5802\u5b89\u6392 \u7c21\u4ecb \u9ede\u6483\u5408\u4e0a \u80cc\u666f\u53ca\u5b97\u65e8 \u5728\u9019\u500b\u77ac\u606f\u842c\u8b8a\u7684\u6642\u4ee3\uff0c\u7267\u8005\u8655\u8eab\u8907\u96dc\u7d1b\u4e82\u7684\u74b0\u5883\uff0c\u9762\u5c0d\u8271\u5de8\u800c\u5145\u6eff\u6311\u6230\u7684\u7267\u990a\u5de5\u4f5c\uff0c\u5be6\u5728\u627f\u64d4\u5341\u5206\u91cd\u5927\u7684\u8cac\u4efb\u3002\u56e0\u8457\u6559\u7267\u540c\u5de5\u903c\u5207\u7684\u9700\u8981\uff0c\u672c\u9662\u5728\u63d0\u4f9b\u50b3\u7d71\u7684\u5b78\u4f4d\u53ca\u6587\u6191\u8ab2\u7a0b\u5916\uff0c\u4ea6\u63d0\u4f9b\u77ed\u671f\u800c\u5be6\u7528\u3001\u8457\u91cd\u5c0d\u61c9\u5be6\u969b\u96e3\u984c\u7684\u8ab2\u5802\u53ca\u7814\u7fd2\u574a\uff0c\u8b93\u5728\u8077\u7267\u8005\u53ef\u9078\u64c7\u4ee5\u7c21\u55ae\u800c\u9748\u6d3b\u7684\u65b9\u5f0f\uff0c\u7372\u5f97\u6301\u7e8c\u9032\u4fee\u3001\u91cd\u65b0\u88dd\u5099\u7684\u6a5f\u6703\u3002\u9019\u4e9b\u8ab2\u7a0b\u65e8\u5728\u8b93\u5de5\u4f5c\u5fd9\u788c\u7684\u6559\u7267\u53ef\u4e00\u9762\u5c08\u5fc3\u4e8b\u5949\uff0c\u4e00\u9762\u6309\u672c\u8eab\u7684\u6642\u9593\u548c\u9700\u8981\u53d6\u5f97\u652f\u63f4\uff0c\u4ee5\u81f4\u7267\u8005\u7684\u751f\u547d\u3001\u4e8b\u5949\u7684\u6280\u5de7\u3001\u767c\u5c55\u6559\u6703\u7684\u7b56\u7565\u90fd\u80fd\u6301\u7e8c\u4e0d\u65b7\u5730\u63d0\u5347\u548c\u66f4\u65b0\u3002 \u672c\u4e2d\u5fc3\u6bcf\u5b63\uff081-3\u6708\u30014-6\u6708\u30019-12\u6708\uff09\u8209\u8fa6\u4e0d\u540c\u8ab2\u7a0b\u53ca\u5de5\u4f5c\u574a\uff08\u8a6e\u91cb\u8207\u5ba3\u8b1b\u3001\u9818\u5c0e\u3001\u95dc\u9867\u8207\u7267\u990a\u3001\u500b\u4eba\u88dd\u5099\u53ca\u5176\u4ed6\u7cfb\u5217\uff09\uff0c\u6b61\u8fce\u700f\u89bd\u672c\u9662\u7db2\u9801\u6216\u81f4\u96fb\u67e5\u8a62\u3002 \u6559\u7267\u6301\u7e8c\u6559\u80b2\u4e2d\u5fc3\u5730\u5740 \uff1a \u9999\u6e2f\u4e5d\u9f8d\u65fa\u89d2\u5f3c\u885756\u865f\u57fa\u7763\u6559\u5927\u6a138\u6a13\u96fb\u8a71 \uff1a (852) 2789 2200 (\u65fa\u89d2) \/ 2768 5179 (\u897f\u6fb3)\u50b3\u771f \uff1a (852) 2630 1391\u96fb\u90f5 \uff1a pce@hkbts.edu.hk \u00a0 \u8cc7\u6e90\u5ba4 \u9ede\u6483\u5408\u4e0a \u672c\u4e2d\u5fc3\u9664\u958b\u8fa6\u8ab2\u7a0b\u53ca\u7814\u7fd2\u574a\u5916\uff0c\u53e6\u65bc\u57fa\u7763\u6559\u5927\u6a13\u4e03\u6a13\u8a2d\u6709\u8cc7\u6e90\u5ba4\uff0c\u5167\u88e1\u64fa\u653e\u6709\u95dc\u6559\u7267\u4e8b\u5de5\u7b49\u4e4b\u66f8\u7c4d\uff0c\u4f9b\u6559\u7267\u540c\u5de5\u53c3\u8003\u4e4b\u7528\u3002\u958b\u653e\u6642\u9593\u70ba\u9031\u4e00\u81f3\u9031\u4e94\u4e0a\u5348\u4e5d\u6642\u534a\u3002\u6b61\u8fce\u5404\u6559\u7267\u540c\u5de5\u4f7f\u7528\u3002 \u6bcf\u5b63\u5b78\u79d1 \u9ede\u6483\u5408\u4e0a 2026\u5e749-12\u6708\u6700\u65b0\u8ab2\u7a0b\u7c21\u4ecb \u8ab2\u7a0b\u5c0f\u518a\u5b50 \u65e5\u9593\u8ab2\u7a0b \u8a8d\u8b58AI\u5728\u6559\u6703\u4e2d\u7684\u61c9\u7528 (\u8a73\u60c5) 8\u670810\u65e5 (\u9031\u4e00) \u4e0a\u53489\u664230\u5206\u81f3\u4e2d\u534812\u664230\u5206 \u5275\u50b7\u7642\u6108\u8207\u500b\u4eba\u6210\u9577 (\u8a73\u60c5) 9\u670814\u300121\u53ca28\u65e5 (\u9031\u4e00) \u4e0b\u53482\u664230\u5206\u81f34\u664230\u5206 \u4fdd\u7f85\u7fa4\u9ad4\u4e2d\u7684\u5c6c\u9748\u6069\u8cdc (\u8a73\u60c5) 10\u67085\u65e5 (\u9031\u4e00) \u4e0a\u534810\u6642\u81f3\u4e2d\u534812\u6642 \u4fe1\u4ef0\u7684\u57fa\u77f3\uff1a\u5f9e\u820a\u7d04\u8056\u7d93\u7684\u4e94\u7d93\u770b\u57fa\u7763\u4fe1\u4ef0\u7684\u6839\u6e90\u8207\u6838\u5fc3 (\u8a73\u60c5) 10\u670812\u300111\u67082\u53ca23\u65e5 (\u9031\u4e00) \u4e0b\u53482\u664230\u5206\u81f34\u664230\u5206 \u4eba\u53e3\u8001\u5316\u4e0b\u7684\u6baf\u5100\u670d\u4f8d (\u8a73\u60c5) 10\u670826\u300111\u67082\u53ca9\u65e5 (\u9031\u4e00) \u4e0a\u534810\u6642\u81f3\u4e2d\u534812\u6642 AI\u5230\u4e86: \u7db2\u7d61\u548cAI\u5982\u4f55\u5f71\u97ff\u5e74\u9752\u4eba\u7684\u5c08\u6ce8\u529b\u548c\u601d\u8003\u529b (\u8a73\u60c5) 10\u670826\u65e5 (\u9031\u4e00) \u4e0b\u53482\u664230\u5206\u81f34\u664230\u5206 \u7a81\u7834\u9752\u5c11\u5e74\u65b7\u5c64\u8207\u8de8\u4ee3\u7267\u990a\u7684\u63a2\u7d22 (\u8a73\u60c5) 11\u67089\u53ca16\u65e5 (\u9031\u4e00) \u4e0b\u53482\u664230\u5206\u81f34\u664230\u5206 \u5225\u8ddf\u5167\u5fc3\u602a\u7378\u62d4\u6cb3\uff1a\u63a5\u7d0d\u8207\u627f\u8afe (\u8a73\u60c5) 11\u670816\u300123\u53ca30\u65e5 (\u9031\u4e00) \u4e0a\u534810\u6642\u81f3\u4e2d\u534812\u6642 \u7576\u7267\u8005\u9047\u4e0a\u6027\u502b\u7406\u7684\u6311\u6230"}