{"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_admin","author_url":"https:\/\/www.hkbts.edu.hk\/zh_cn\/?p=author\/wordpress_admin\/","title":"\u5165\u5b78\u7533\u8acb\u8868\u4e0b\u8f09\u5340 - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"zlkkGfDpKO\"><a href=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/admissiondownload\/\">\u5165\u5b66\u7533\u8bf7\u8868\u4e0b\u8f7d\u533a<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/admissiondownload\/embed\/#?secret=zlkkGfDpKO\" width=\"600\" height=\"338\" title=\"\u300a \u5165\u5b66\u7533\u8bf7\u8868\u4e0b\u8f7d\u533a\u300b\u2014\u9999\u6e2f\u6d78\u4fe1\u4f1a\u795e\u5b66\u9662\" data-secret=\"zlkkGfDpKO\" 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 \u5165\u5b78\u7533\u8acb\u8868\u4e0b\u8f09\u5340 \u6821\u672c\u90e8\u8ab2\u7a0b \u4fe1\u5f92\u795e\u5b78\u6559\u80b2\u90e8\u8ab2\u7a0b \u9059\u8ddd\u6559\u80b2\u8ab2\u7a0b \u4e0a\u8f09PDF\u8868\u683c \u6821\u672c\u90e8\u8ab2\u7a0b \u6821\u672c\u90e8\u8ab2\u7a0b 2026-2027\u5e74\u5ea6\u79cb\u5b63\u62db\u751f \u6821\u672c\u90e8\u8ab2\u7a0b \u795e\u5b78\u5b78\u58eb \u9053\u5b78\u78a9\u58eb \u57fa\u7763\u6559\u7814\u7a76\u78a9\u58eb\u8ab2\u7a0b \u7267\u8077\u8ab2\u7a0b\u5165\u5b78\u7533\u8acb\u8868 \u795e\u5b78\u78a9\u58eb \u795e\u5b78\u535a\u58eb \u7814\u7a76\u9662\u8ab2\u7a0b\u5165\u5b78\u7533\u8acb\u8868\uff08\u4e2d\u6587\uff09 \u7814\u7a76\u9662\u8ab2\u7a0b\u5165\u5b78\u7533\u8acb\u8868\uff08\u82f1\u6587\uff09 \u6821\u5916\u8ab2\u7a0b \u4fe1\u5f92\u795e\u5b78\u6559\u80b2\u90e8\u8ab2\u7a0b Please refer to the Chinese page. \u5b78\u4f4d\u8ab2\u7a0b \u57fa\u7763\u6559\u7814\u7a76\u6587\u5b78\u78a9\u58eb\/\u6df1\u9020\u6587\u6191\/\u6df1\u9020\u8b49\u66f8 \u57fa\u7763\u6559\u7814\u7a76\u6587\u5b78\u5b78\u58eb\/\u9ad8\u7d1a\u6587\u6191\/\u6587\u6191 \u57fa\u7763\u6559\u751f\u6b7b\u6559\u80b2\u6df1\u9020\u8b49\u66f8\u8ab2\u7a0b (\u5168\u65b0\u8ab2\u7a0b) \u5d07\u62dc\u8207\u85dd\u8853\u6df1\u9020\u8b49\u66f8(\u5168\u65b0\u8ab2\u7a0b) \u4fe1\u5f92\u795e\u5b78\u5b78\u4f4d\u8ab2\u7a0b\u5165\u5b78\u7533\u8acb\u8868 \u975e\u5b78\u4f4d\u8ab2\u7a0b \u4fe1\u5f92\u666e\u53ca\u795e\u5b78\u6587\u6191\/\u8b49\u66f8 \u5a66\u5973\u666e\u53ca\u795e\u5b78(\u5fc3\u9748\u95dc\u9867\u8207\u6210\u9577)\u8b49\u66f8\u8ab2\u7a0b(\u9769\u65b0\u8ab2\u7a0b) \u57fa\u7763\u6559\u751f\u6b7b\u6559\u80b2\u8b49\u66f8\u8ab2\u7a0b \u5bb6\u5ead\u7167\u9867\u8005\u53ca\u91d1\u9f61\u4e8b\u5de5\u8b49\u66f8\u8ab2\u7a0b \u8df3\u51fa\u6846\u6846-\u9752\u5c11\u5e74\u7267\u990a\u4e8b\u5de5\u8ab2\u7a0b \u8207\u4f60\u6a02\u7ae5\u884c-\u5152\u5e7c\u4e8b\u5de5\u8b49\u66f8\u8ab2\u7a0b \u6559\u6703\u884c\u653f\u4e8b\u52d9\u8b49\u66f8\u8ab2\u7a0b \u5ba3\u6559\u4e8b\u5de5\u8b49\u66f8\u8ab2\u7a0b \u85dd\u8853\u8207\u9748\u4fee\u5be6\u8e10\u8b49\u66f8\u8ab2\u7a0b (\u5168\u65b0\u8ab2\u7a0b) \u4fe1\u5f92\u795e\u5b78\u975e\u5b78\u4f4d\u8ab2\u7a0b\u5165\u5b78\u7533\u8acb\u8868 \u9059\u8ddd\u6559\u80b2\u8ab2\u7a0b Please refer to the Chinese page. \u5b78\u4f4d\u8ab2\u7a0b \u57fa\u7763\u6559\u7814\u7a76\u6587\u5b78\u78a9\u58eb \u53ca \u57fa\u7763\u6559\u7814\u7a76\u6df1\u9020\u6587\u6191\/\u8b49\u66f8\uff08\u5b78\u4f4d\u8ab2\u7a0b\uff09\u57fa\u7763\u6559\u7814\u7a76\u6587\u5b78\u5b78\u58eb\u8ab2\u7a0b \u53ca \u57fa\u7763\u6559\u7814\u7a76\u9ad8\u7d1a\u6587\u6191\/\u6587\u6191\uff08\u5b78\u4f4d\u8ab2\u7a0b\uff09 \u5b78\u4f4d\u8ab2\u7a0b\u5165\u5b78\u7533\u8acb\u8868 \u975e\u5b78\u4f4d\u8ab2\u7a0b \u8056\u7d93\u7814\u8b80\u8b49\u66f8\u8ab2\u7a0b \u57fa\u7763\u6559\u7814\u7a76\u6587\u6191\uff08\u975e\u5b78\u4f4d\u8ab2\u7a0b\uff09 \u57fa\u7763\u6559\u7814\u7a76\u9ad8\u7b49\u6587\u6191\uff08\u975e\u5b78\u4f4d\u8ab2\u7a0b\uff09 \u975e\u5b78\u4f4d\u8ab2\u7a0b\u5165\u5b78\u7533\u8acb\u8868 \u738b\u5289\u71d5\u5bb9\u57fa\u7763\u6559\u5d07\u62dc\u8207\u85dd\u8853\u6559\u80b2\u4e2d\u5fc3\u8ab2\u7a0b 2022\u5e74\u6700\u65b0\u8ab2\u7a0b\u62db\u751f\u7db2\u4e0a\u5831\u540d \u4e0b\u8f09\u5831\u540d\u8868\u683c 2022\u5e74\u6700\u65b0\u8ab2\u7a0b\u62db\u751f\u7db2\u4e0a\u5831\u540d \u4e0b\u8f09\u5831\u540d\u8868\u683c \u6559\u7267\u6301\u7e8c\u6559\u80b2\u4e2d\u5fc3\u8ab2\u7a0b 2022\u5e74\u6700\u65b0\u8ab2\u7a0b\u62db\u751f \u7db2\u4e0a\u5831\u540d \u4e0b\u8f09\u5831\u540d\u8868\u683c 2022\u5e74\u6700\u65b0\u8ab2\u7a0b\u62db\u751f\u7db2\u4e0a\u5831\u540d \u4e0b\u8f09\u5831\u540d\u8868\u683c \u4e0a\u8f09PDF\u8868\u683c"}