{"version":"1.0","provider_name":"Hong Kong Baptist Theological Seminary","provider_url":"https:\/\/www.hkbts.edu.hk\/en","author_name":"iris","author_url":"https:\/\/www.hkbts.edu.hk\/en\/?p=author\/iris\/","title":"\u6307\u63ee\u63a2\u7d22101\u7cfb\u5217\u55ae\u5143\uff1a\u5408\u5531\u5be6\u9a57\u5ba4Choral Lab - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"gQgSl6ijt7\"><a href=\"https:\/\/www.hkbts.edu.hk\/en\/waec\/%e6%8c%87%e6%8f%ae%e6%8e%a2%e7%b4%a2101%e7%b3%bb%e5%88%97%e5%96%ae%e5%85%83%ef%bc%9a%e5%90%88%e5%94%b1%e5%af%a6%e9%a9%97%e5%ae%a4choral-lab\/\">Conducting Exploration 101 Series Unit: Choral Lab<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/en\/waec\/%e6%8c%87%e6%8f%ae%e6%8e%a2%e7%b4%a2101%e7%b3%bb%e5%88%97%e5%96%ae%e5%85%83%ef%bc%9a%e5%90%88%e5%94%b1%e5%af%a6%e9%a9%97%e5%ae%a4choral-lab\/embed\/#?secret=gQgSl6ijt7\" width=\"600\" height=\"338\" title=\"\u201c&quot;Conducting Exploration 101 Series: Choral Lab&quot; \u2014 Hong Kong Baptist Theological Seminary\" data-secret=\"gQgSl6ijt7\" 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 \u6307\u63ee\u63a2\u7d22101\u7cfb\u5217\u55ae\u5143\uff1a\u5408\u5531\u5be6\u9a57\u5ba4Choral Lab Pls refer to the Chinese page \u8ab2\u7a0b \u6307\u63ee\u63a2\u7d22101\u7cfb\u5217\u55ae\u5143\uff1a\u5408\u5531\u5be6\u9a57\u5ba4Choral Lab &#8211;\u984d\u6eff \u5167\u5bb9 \u5408\u5531\u662f\u6559\u6703\u8b9a\u7f8e\u8207\u737b\u5448\u7684\u91cd\u8981\u85dd\u8853\u5a92\u4ecb\u3002\u672c\u8ab2\u7a0b\u5982\u540c\u4e00\u5ea7\u5be6\u9a57\u5ba4\uff0c\u8b93\u5408\u5531\u5b78\u54e1\u8207\u6307\u63ee\u5b78\u54e1\u5171\u540c\u5617\u8a66\u5c07\u97f3\u8272\u3001\u548c\u8072\u3001\u6a02\u53e5\u8b8a\u5316\u7b49\u5143\u7d20\uff0c\u900f\u904e\u6307\u63ee\u7684\u8a6e\u91cb\u8f49\u5316\u70ba\u5b8c\u6574\u7684\u85dd\u8853\u6210\u54c1\uff0c\u5f15\u9818\u81f3\u66f4\u7f8e\u7684\u4e8b\u5949\u3002\u9f13\u52f5\u8a69\u73ed\u6574\u9ad4\u5831\u540d\u3002 \u5c0e\u5e2b\u5c07\u8b1b\u89e3\u57fa\u790e\u767c\u8072\u8207\u65bc\u5408\u5531\u7684\u61c9\u7528\uff0c\u6307\u63ee\u5b78\u54e1\u6bcf\u7bc0\u5be6\u969b\u6307\u63ee\u4e26\u7372\u9ede\u8a55\u3002\u6700\u5f8c\u4e00\u5802\u70ba\u5408\u5531\u8a3a\u65b7\uff0c\u7531\u6307\u63ee\u5e36\u9818\u737b\u5531\uff0c\u5c0e\u5e2b\u63d0\u4f9b\u5f8c\u7e8c\u8a13\u7df4\u5efa\u8b70\u3002 \u672c\u79d1\u540c\u6642\u62db\u6536\u6307\u63ee\u5b78\u54e1\uff0c\u53ca\u5408\u5531\u5b78\u54e1\u3002 \u8b1b\u5e2b \u51bc\u5b8f\u57fa\u5148\u751f \u7f8e\u570b\u4f0a\u58eb\u66fc\u97f3\u6a02\u5b78\u9662\u7ba1\u5f26\u6a02\u6307\u63ee\u97f3\u6a02\u78a9\u58eb\uff1b\u52a0\u62ff\u5927\u9ea5\u57fa\u723e\u5927\u5b78\u97f3\u6a02\u5b78\u58eb\uff08\u4e3b\u4fee\u6572\u64ca\u6a02\u53ca\u5b9a\u97f3\u9f13\uff09\uff1b\u6d3b\u8e8d\u65bc\u6307\u63ee\u672c\u5730\u53e4\u5178\u53ca\u7576\u4ee3\u97f3\u6a02\u6a02\u5718\uff0c\u4ee5\u7c21\u55ae\u7684\u6307\u63ee\u98a8\u683c\u5e36\u9818\u6a02\u5718\u6f14\u7e79\u4e0d\u540c\u6642\u671f\u53ca\u98a8\u683c\u7684\u4f5c\u54c1\u3002 \u90ed\u5c8d\u5c0f\u59d0 \u9999\u6e2f\u5927\u5b78\u97f3\u6a02\u7814\u7a76\u6587\u5b78\u78a9\u58eb\uff08\u512a\u7570\uff09 \u9999\u6e2f\u6f14\u85dd\u5b78\u9662\u6df1\u9020\u6587\u6191(\u8072\u6a02\u53ca\u6b4c\u5287) \u82f1\u570b\u8056\u4e09\u4e00\u97f3\u6a02\u5b78\u9662\u6b4c\u5531\u6587\u6191(ATCL) \u5c0d\u8c61 \u5408\u5531\u6307\u63ee\u8005\u3001\u9818\u5531\u8005\uff0c\u5b78\u6821\u97f3\u6a02\u8001\u5e2b\u53ca\u97f3\u6a02\u611b\u597d\u8005\u3002\u6b63\u5f0f\u5b78\u54e1\u5831\u8b80\u8981\u6c42\uff1a \u6709\u9054\u82f1\u570b\u7687\u5bb6\u97f3\u6a02\u5b78\u9662 (ABRSM) \u8853\u79d1\u8003\u8a66\u4e94\u7d1a\u6216\u540c\u7b49\u7a0b\u5ea6\u7684\u8996\u5531\u80fd\u529b\u3002\u6216 \u5df2\u5b8c\u6210\u5169\u671f\u672c\u5b78\u9662\u8996\u5531\u7df4\u8033\u6216\u8072\u6a02\u521d\u968e\u5ef6\u4f38\u7684\u8ab2\u7a0b\u3002 \u6b61\u8fce\u4fee\u8b80\u8005\u5e36\u540c\u6709\u57fa\u672c\u8b80\u8b5c\u8996\u5531\u7d93\u9a57\u4e4b\u5408\u5531\u5718\u968a\u6210\u54e1\u3001\u6b4c\u5531\u611b\u597d\u8005\u65c1\u807d\u3002 \u65e5\u671f 2026\u5e747\u670821\u65e5\u30018\u670811\u300118\u65e5\u53ca9\u67088\u65e5\uff08\u9022\u79ae\u62dc\u4e8c\uff0c\u5171\u56db\u5802\uff09 \u6642\u9593 7:30 \u2013 10:00pm \u540d\u984d \u6307\u63ee\u5b78\u54e16\u4eba\uff0c\u5408\u5531\u5b78\u54e118\u4eba\uff08\u6307\u63ee\u5b78\u54e1\u90545\u4eba\u6216\u4ee5\u4e0a\u5831\u8b80\u624d\u958b\u8ab2\uff09 \u8cbb\u7528 \u6307\u63ee\u5b78\u54e1HK$2,450 \u00a0\u00a0\u00a0 \uff08\u4e09\u4eba\u6216\u4ee5\u4e0a\u96c6\u9ad4\u5831\u8b80\uff0c\u6216\u65bc7\u67088\u65e5\u524d\u500b\u4eba\u5831\u8b80\uff0c\u5b78\u8cbb\u6bcf\u4eba\u70baHK$2,250\uff09 \u5408\u5531\u5b78\u54e1HK$490 \u00a0\u00a0\u00a0 \uff08\u4e09\u4eba\u6216\u4ee5\u4e0a\u96c6\u9ad4\u5831\u8b80\uff0c\u6216\u65bc7\u67088\u65e5\u524d\u500b\u4eba\u5831\u8b80\uff0c\u5b78\u8cbb\u6bcf\u4eba\u70baHK$450\uff09 \u5831\u540d\u8868 \u7db2\u4e0a\u5831\u540d \u4e0b\u8f09\u5831\u540d\u8868"}