{"version":"1.0","provider_name":"Hong Kong Baptist Theological Seminary","provider_url":"https:\/\/www.hkbts.edu.hk\/en","author_name":"wordpress_admin","author_url":"https:\/\/www.hkbts.edu.hk\/en\/?p=author\/wordpress_admin\/","title":"\u9032\u968e\u5408\u5531\u6280\u5de7\uff1a\u7814\u7fd2\u3001\u8003\u5bdf - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"mquHAFhkCA\"><a href=\"https:\/\/www.hkbts.edu.hk\/en\/waec\/%e9%80%b2%e9%9a%8e%e5%90%88%e5%94%b1%e6%8a%80%e5%b7%a7%ef%bc%9a%e7%a0%94%e7%bf%92%e3%80%81%e8%80%83%e5%af%9f\/\">Advanced Choral Techniques: Study and Examination<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/en\/waec\/%e9%80%b2%e9%9a%8e%e5%90%88%e5%94%b1%e6%8a%80%e5%b7%a7%ef%bc%9a%e7%a0%94%e7%bf%92%e3%80%81%e8%80%83%e5%af%9f\/embed\/#?secret=mquHAFhkCA\" width=\"600\" height=\"338\" title=\"\u201c&quot;Advanced Choral Singing Techniques: Study and Examination&quot; \u2014 Hong Kong Baptist Theological Seminary\" data-secret=\"mquHAFhkCA\" 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 \u9032\u968e\u5408\u5531\u6280\u5de7\uff1a\u7814\u7fd2\u3001\u8003\u5bdf \u79d1\u76ee \u9032\u968e\u5408\u5531\u6280\u5de7\uff1a\u7814\u7fd2\u3001\u8003\u5bdf &#8211; &#8211; \u63a5\u53d7\u5831\u540d \u5167\u5bb9 \u81ea\u4e8c\u6b21\u5927\u6230\u7d50\u675f\u81f3\u4eca\u8fd1\u516b\u5341\u5e74\uff0c\u4e16\u754c\u5404\u5730\u7684\u5408\u5531\u6d3b\u52d5\u7a7a\u524d\u84ec\u52c3\uff01\u5408\u5531\u5718\u968a\u737b\u6f14\u6c34\u5e73\uff0c\u4f5c\u54c1\u7684\u985e\u5225\u548c\u5275\u610f\uff0c\u5408\u5531\u6d3b\u52d5\u7684\u6578\u91cf\u548c\u8de8\uff08\u85dd\u8853\u5f62\u5f0f\u3001\u6587\u5316\/\u793e\u6703\/\u8a9e\u8a00\/\u5730\u57df\u7b49\uff09\u9818\u57df\u7684\u4e0d\u65b7\u63d0\u5347\u3001\u62d3\u5c55\u3001\u7a81\u7834\uff0c\u90fd\u4f7f\u5408\u5531\u97f3\u6a02\u6210\u70ba\u6108\u4f86\u6108\u591a\u793e\u7fa4\u3001\u793e\u6703\u5236\u5ea6\u3001\u5730\u5340\u3001\u570b\u65cf\uff0c\u751a\u81f3\u6d32\u969b\u9593\u7684\u4e0d\u53ef\u6216\u7f3a\u666f\u8c61\uff0c\u6210\u70ba\u8207\u6d88\u8cbb\u3001\u5546\u54c1\u5316\u4e3b\u6f6e\u7684\u6d41\u884c\u6587\u5316\u4e00\u5927\u6297\u8861\uff01 \u53ef\u60dc\u666e\u904d\u9999\u6e2f\u6559\u6703\u537b\u9010\u6f38\u9060\u96e2\u3001\u9000\u51fa\u9019\u7a2e\u85dd\u8853\u9014\u5f91\uff0c\u653e\u68c4\u900f\u904e\u4ee5\u6b64\u884c\u52d5\u5f62\u5f0f\u4f86\u5d07\u62dc\u4e0a\u4e3b\u3001\u5ba3\u63da\u798f\u97f3\u3001\u57f9\u80b2\u9748\u6027\u3001\u5718\u5951\u4ea4\u8abc\uff01 \u672c\u8ab2\u7a0b\u96c6\u4e2d\u5f9e\u5408\u5531\u6280\u5de7\u7684\u89d2\u5ea6\u5165\u624b\uff0c\u5f15\u5c0e\u5b78\u54e1\u767c\u73fe\u600e\u6a23\u5728\u6559\u6703\u3001\u5b78\u6821\u7684\u5408\u5531\u5834\u666f\uff08\u5373\u5408\u5531\u6210\u54e1\u5927\u591a\u672a\u7d93\u5c08\u696d\u97f3\u6a02\u57f9\u8a13\uff09\u8ffd\u5c0b\u5408\u5531\u7684\u512a\u7f8e\u6548\u679c\u3002\u7531\u6b4c\u5531\u767c\u8072\u3001\u5410\u5b57\u3001\u97f3\u8272\u8abf\u914d\u3001\u8072\u90e8\u5354\u548c\u3001\u529b\u5ea6\u5747\u8861\u7b49\u97f3\u6a02\u5143\u7d20\uff0c\u5230\u6307\u63ee\u52d5\u4f5c\u3001\u6b4c\u66f2\u9078\u6750\u3001\u6559\u5b78\u57f9\u8a13\u3001\u7f8e\u5b78\u6a21\u5851\u3001\u9748\u6027\u8a13\u80b2\u3001\u884c\u653f\u64cd\u4f5c\u3001\u8ca1\u653f\u7ba1\u6cbb\u7b49\u500b\u4eba\u8207\u7fa4\u9ad4\u8cea\u7d20\u6210\u9577\u7684\u7bc4\u7587\uff0c\u90fd\u6703\u89f8\u53ca\u3002 \u672c\u8ab2\u7a0b\u4e0d\u5b9a\u671f\u6301\u7e8c\u958b\u8fa6\uff0c\u6bcf\u671f\u5167\u5bb9\u7368\u7acb\u800c\u524d\u5f8c\u76f8\u95dc\uff0c\u9664\u8ab2\u5802\u7406\u8ad6\u8b1b\u89e3\u548c\u5c0e\u5e2b\u672c\u8eab\u8d85\u904e50\u5e74\u7684\u5be6\u8e10\u7d93\u9a57\u5206\u4eab\u5916\uff0c\u4ea6\u52a0\u5165\u5be6\u969b\u5408\u5531\u7df4\u7fd2\u89c0\u6469\uff0c\u6309\u9700\u8981\u8b93\u5b78\u54e1\u76f4\u63a5\u53c3\u8207\uff0c\u5be6\u9a57\u6280\u5de7\u3002 \u8b1b\u5e2b \u5289\u6c38\u751f\u5148\u751f \u672c\u9662\u6559\u6703\u97f3\u6a02\u79d1\u8b1b\u5e2b \u738b\u5289\u71d5\u5bb9\u57fa\u7763\u6559\u5d07\u62dc\u8207\u85dd\u8853\u6559\u80b2\u4e2d\u5fc3\u4e3b\u4efb \u9999\u6e2f\u4e2d\u6587\u5927\u5b78(\u69ae\u8b7d)\u97f3\u6a02\u5b78\u58eb \u6d69\u8072\u8b9a\u7942\u8a60\u5718\u3001\u6559\u6703\u6a02\u5703\u3001\u9999\u6e2f\u8056\u8a69\u6703\u97f3\u6a02\u7e3d\u76e3 \u5c0d\u8c61 \u6559\u6703\u6216\u5b78\u6821\u5408\u5531\u97f3\u6a02\u5c0e\u5e2b\u3001\u6307\u63ee\u3002\u9700\u5177\u6700\u5c11\u5169\u5e74\u5408\u5531\u6307\u63ee\u6216\u4e09\u5e74\u5408\u5531\u7d93\u9a57\uff0c\u5177\u8b80\u8b5c\u80fd\u529b\u3002 \u65e5\u671f \u7406\u8ad6\u63a2\u8a0e\u8ab22024\u5e741\u670817\u65e5\u81f32\u67087\u65e5\uff08\u9022\u79ae\u62dc\u4e09\uff0c\u5171\u56db\u5802\uff09\u5be6\u6cc1\u89c0\u6469\u8ab2 \uff08\u89c0\u6469\u300c\u6d69\u8072\u8b9a\u7942\u8a60\u5718\u300d\u6046\u5e38\u7df4\u7fd2\uff09 2024\u5e741\u670825\u65e5\uff0c2\u67081\u65e5 \uff08\u9022\u79ae\u62dc\u56db\uff0c\u5171\u5169\u5802\uff09 \u6642\u9593 \u7406\u8ad6\u63a2\u8a0e\u8ab2 7:00 \u2013 9:00pm\u5be6\u6cc1\u89c0\u6469\u8ab2 7:30 \u2013 9:45pm \u5730\u9ede \u4e5d\u9f8d\u65fa\u89d2\u5f3c\u885756\u865f\u57fa\u7763\u6559\u5927\u6a137\u6a13 \u8cbb\u7528 HK$1,100 \u540d\u984d 12\u4eba\uff087\u4eba\u6216\u4ee5\u4e0a\u5831\u8b80\u624d\u958b\u8ab2\uff09 \u5099\u8a3b \u4e09\u4eba\u6216\u4ee5\u4e0a\u96c6\u9ad4\u5831\u8b80\uff0c\u6216\u65bc1\u670811\u65e5\u524d\u4ee5\u500b\u4eba\u8eab\u4efd\u5831\u8b80\uff0c\u5b78\u8cbb\u6bcf\u4eba\u70baHK$990 \u90f5\u5bc4\u5831\u540d\u8868\u53ca\u652f\u7968\uff0c\u65e5\u671f\u4ee5\u90f5\u6233\u70ba\u6e96\u3002\u5df2\u7e73\u4ea4\u4e4b\u5b78\u8cbb\uff0c\u5b78\u984d\u4e0d\u53ef\u8f49\u8b93\u3002 \u5831\u540d\u8005\u9700\u9810\u5148\u81ea\u884c\u65bc \u8056\u6a02\u670d\u52d9\u793e\u8cfc\u8cb7\u5169\u5408\u5531\u66f2\u96c6\u300a\u97fb\u5f8b\u548c\u6642\u9593\u300b\u3001\u300a\u5176\u5be6\u78ba\u5f14\u8a6d\u300b\uff08\u6d69\u8072\u8b9a\u7942\u8a60\u5718\u51fa\u7248\u300c\u6559\u6703\u7bc0\u671f\u5408\u5531\u66f2\u96c6\u300d\uff09\u3002\u6216\u5831\u540d\u6642\u6307\u660e\u9700\u4ee3\u8a02\uff0c\u65bc\u7b2c\u4e00\u5802\u4e0a\u8ab2\u6642\u7e73\u4ed8\u73fe\u91d1\u5408\u5171HK$156\u9818\u53d6\u3002 \u8ab2\u7a0b\u5b78\u54e1\uff0c\u53ef\u5e36\u540c\u4e00\u81f3\u5169\u4f4d\u5408\u5531\u4f19\u4f34\u51fa\u5e2d2024\u5e741\u670825\u65e5\uff0c2\u67081\u65e5\u5be6\u6cc1\u89c0\u6469\u8ab2\u3002 \u622a\u6b62\u5831\u540d\u65e5\u671f 20"}