{"version":"1.0","provider_name":"\u9999\u6e2f\u6d78\u4fe1\u4f1a\u795e\u5b66\u9662","provider_url":"https:\/\/www.hkbts.edu.hk\/zh_cn","author_name":"Mak Ki Ki \u805e\u742a\u742a","author_url":"https:\/\/www.hkbts.edu.hk\/zh_cn\/?p=author\/jennifer\/","title":"\u78a9\u58eb\u8ab2\u7a0b\u65c1\u807d\u79d1\u76ee (\u6821\u672c\u90e8) - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"vdv4PdMvfx\"><a href=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/master-audit-courses_main-campus\/\">\u7855\u58eb\u8bfe\u7a0b\u65c1\u542c\u79d1\u76ee(\u6821\u672c\u90e8)<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/master-audit-courses_main-campus\/embed\/#?secret=vdv4PdMvfx\" width=\"600\" height=\"338\" title=\"\u300a \u7855\u58eb\u8bfe\u7a0b\u65c1\u542c\u79d1\u76ee(\u6821\u672c\u90e8) \u300b\u2014\u9999\u6e2f\u6d78\u4fe1\u4f1a\u795e\u5b66\u9662\" data-secret=\"vdv4PdMvfx\" 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":"2026-27\u5e74\u5ea6\u79cb\u5b63\u65c1\u807d\u79d1\u76ee Please refer to the Chinese page. \u6b61\u8fce\u6821\u53cb\u3001\u6559\u7267\u540c\u5de5\u3001\u9577\u57f7\uff0f\u5802\u59d4\u5831\u8b80\u672c\u9662\u65c1\u807d\u79d1\u76ee\uff0c\u5404\u79d1\u7531\u5373\u65e5\u8d77\u958b\u59cb\u63a5\u53d7\u5831\u540d\u3002\u51fa\u5e2d\u7387\u905480%\u53ef\u7533\u8acb\u300c\u65c1\u807d\u8b49\u660e\u300d\u3002 \u5831\u8b80\u8cc7\u683c \u795e\u5b78\u78a9\u58eb\u65c1\u807d\u8ab2\u7a0b\uff1a\u6301\u6709\u9053\u5b78\u78a9\u58eb\u6216\u57fa\u7763\u6559\u7814\u7a76\u78a9\u58eb\u4e4b\u6821\u53cb\u53ca\u6559\u7267\u540c\u5de5\uff1b \u9053\u5b78\u78a9\u58eb\u65c1\u807d\u8ab2\u7a0b\uff1a\u6821\u672c\u90e8\u53ca\u4fe1\u5f92\u795e\u5b78\u6559\u80b2\u90e8\u5b78\u4f4d\u8ab2\u7a0b\u7562\u696d\u4e4b\u6821\u53cb\u3001\u6559\u7267\u540c\u5de5\u53ca\u9577\u57f7\uff0f\u5802\u59d4\u3002 \u5831\u540d\u7a0b\u5e8f \u4e0b\u8f09\u4e26\u586b\u59a5\u300c\u65c1\u807d\u7533\u8acb\u8868\u300d\uff0c\u9023\u540c\u652f\u7968\u6216\u7e73\u8cbb\u8b49\u660e\uff0c\u90f5\u5bc4 (\u65b0\u754c\u897f\u8ca2\u5317\u897f\u6fb3\u5e74\u660e\u8def\u4e00\u865f) \u6216\u96fb\u90f5 (admissions@hkbts.edu.hk) \u81f3\u5165\u5b78\u53ca\u8a3b\u518a\u8655\uff1b \u63d0\u4ea4\u300c\u6559\u6703\u63a8\u85a6\u4fe1\u300d(\u9069\u7528\u65bc\u9577\u57f7\uff0f\u5802\u59d4\u4e4b\u7533\u8acb) \uff1b \u672c\u9662\u5c07\u4ee5\u96fb\u90f5\u56de\u8986\u78ba\u8a8d\u5831\u8b80\u7533\u8acb\u3002\u5982\u5728\u958b\u8ab2\u65e5\u524d\u4e09\u5929\u4ecd\u672a\u63a5\u7372\u901a\u77e5\uff0c\u8acb\u81f4\u96fb\u5165\u5b78\u53ca\u8a3b\u518a\u8655\u67e5\u8a62\uff1b \u65c1\u807d\u4e0d\u8a2d\u52a0\uff0f\u6e1b\u79d1\uff0c\u5df2\u7372\u6279\u6838\u5831\u540d\u8005\uff0c\u5b78\u8cbb\u6982\u4e0d\u767c\u9084\uff0c\u4ea6\u4e0d\u53ef\u8f49\u8b93\u540d\u984d\u3002 \u67e5\u8a62 \u5165\u5b78\u53ca\u8a3b\u518a\u8655 \u96fb\u8a71\uff1a2768 5130 \u96fb\u90f5\uff1aadmissions@hkbts.edu.hk \u79d1\u76ee\u53ca\u6642\u9593\u8868 \u65c1\u807d\u7533\u8acb\u8868 \u795e\u5b78\u78a9\u58eb\u79d1\u76ee 1 \u5b78\u79d1\u7de8\u865f\uff1aTMNT511_1 \u7b26\u985e\u798f\u97f3\u91cb\u7d93\uff1a\u99ac\u53ef\u798f\u97f3 2 \u5b78\u79d1\u7de8\u865f\uff1aTMOT525 \u8a69\u6b4c\u53ca\u667a\u6167\u6587\u5b78\u9078\u8b80 3 \u5b78\u79d1\u7de8\u865f\uff1aTMCT515_1 \u57fa\u7763\u6559\u4eba\u985e\u5b78\uff1a\u4fdd\u7f85\u30fb\u8482\u5229\u5e0c(Paul Tillich) \u7b26\u985e\u798f\u97f3\u91cb\u7d93\uff1a\u99ac\u53ef\u798f\u97f3 \u8001\u5e2b \u6797\u5929\u7950\u535a\u58eb \u4e0a\u8ab2\u65e5\u671f 2026\u5e748\u670824\u65e5\u81f312\u670814\u65e5 (\u9022\u79ae\u62dc\u4e00) \u4e0a\u8ab2\u6642\u9593 \u4e0a\u53489\u6642\u81f311\u6642 \u622a\u6b62\u5831\u540d\u65e5\u671f 2026\u5e748\u670815\u65e5\u00a0 \u667a\u6167\u53ca\u8a69\u6b4c\u6587\u5b78\u9078\u8b80 \u8001\u5e2b \u9ec3\u798f\u5149\u6559\u6388 \u4e0a\u8ab2\u65e5\u671f 2026\u5e748\u670824\u65e5\u81f312\u670814\u65e5 (\u9022\u79ae\u62dc\u4e00) \u4e0a\u8ab2\u6642\u9593 \u4e0a\u534811\u6642\u81f3\u4e0b\u53481\u6642 \u622a\u6b62\u5831\u540d\u65e5\u671f 2026\u5e748\u670815\u65e5 \u5099\u8a3b \u5148\u4fee\u8981\u6c42\uff1a\u9700\u4fee\u7562\u820a\u7d04\u5c0e\u8ad6(MBOT103)\u53ca\u4e2d\u7d1a\u5e0c\u4f2f\u4f86\u6587(MBOT301)\u6216\u540c\u7b49\u7a0b\u5ea6\u79d1\u76ee \u57fa\u7763\u6559\u4eba\u985e\u5b78\uff1a\u4fdd\u7f85\u30fb\u8482\u5229\u5e0c(Paul Tillich) \u8001\u5e2b \u66f9\u5049\u5f64\u6559\u6388 \u4e0a\u8ab2\u65e5\u671f 2026\u5e748\u670824\u65e5\u81f312\u670814\u65e5 (\u9022\u79ae\u62dc\u4e00) \u4e0a\u8ab2\u6642\u9593 \u4e0a\u53489\u664230\u5206\u81f311\u664230\u5206 \u622a\u6b62\u5831\u540d\u65e5\u671f 2026\u5e748\u670815\u65e5 \u9053\u5b78\u78a9\u58eb\u79d1\u76ee 1 \u5b78\u79d1\u7de8\u865f\uff1aMBOT103 \u820a\u7d04\u5c0e\u8ad6 2 \u5b78\u79d1\u7de8\u865f\uff1aMBNT104 \u65b0\u7d04\u5c0e\u8ad6 3 \u5b78\u79d1\u7de8\u865f\uff1aMBIB301 \u8056\u7d93\u795e\u5b78 4 \u5b78\u79d1\u7de8\u865f\uff1aMBNT418 \u99ac\u53ef\u798f\u97f3 5 \u5b78\u79d1\u7de8\u865f\uff1aMTCT202 \u7cfb\u7d71\u795e\u5b78 (\u4e8c) 6 \u5b78\u79d1\u7de8\u865f\uff1aMTET301 \u6587\u5316\u8655\u5883\u4e2d\u7684\u57fa\u7763\u6559\u502b\u7406 7"}