{"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":"\u5408\u5531\u6280\u5de7\uff08\u4e00\uff09\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=\"O1fzhgisEW\"><a href=\"https:\/\/www.hkbts.edu.hk\/en\/waec\/%e5%90%88%e5%94%b1%e6%8a%80%e5%b7%a7%ef%bc%88%e4%b8%80%ef%bc%89%ef%bc%9a%e7%a0%94%e7%bf%92%e3%80%81%e8%80%83%e5%af%9f\/\">Choral Skills (I): Study and Investigation<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/en\/waec\/%e5%90%88%e5%94%b1%e6%8a%80%e5%b7%a7%ef%bc%88%e4%b8%80%ef%bc%89%ef%bc%9a%e7%a0%94%e7%bf%92%e3%80%81%e8%80%83%e5%af%9f\/embed\/#?secret=O1fzhgisEW\" width=\"600\" height=\"338\" title=\"\u201c&quot;Choral Techniques (Part 1): Study and Exploration&quot; \u2014 Hong Kong Baptist Theological Seminary\" data-secret=\"O1fzhgisEW\" 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 \u5408\u5531\u6280\u5de7\uff08\u4e00\uff09\uff1a\u7814\u7fd2\u3001\u8003\u5bdf \u79d1\u76ee \u5408\u5531\u6280\u5de7\uff08\u4e00\uff09\uff1a\u7814\u7fd2\u3001\u8003\u5bdf &#8211; &#8211; \u63a5\u53d7\u5831\u540d \u5167\u5bb9 \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 \u8ab2\u5802\u89f8\u53ca\u4ee5\u4e0b\u500b\u4eba\u8207\u7fa4\u9ad4\u8cea\u7d20\u6210\u9577\u7684\u7bc4\u570d\uff1a 1 \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 2 \u6307\u63ee\u52d5\u4f5c\u6eab\u7fd2\uff0c 3 \u6b4c\u66f2\u9078\u6750\u3001\u6559\u5b78\u57f9\u8a13\u3001\u7f8e\u5b78\u6a21\u5851\u3001\u9748\u6027\u8a13\u80b2\uff0c 4 \u884c\u653f\u64cd\u4f5c\u3001\u8ca1\u653f\u7ba1\u6cbb\u7b49\u7bc4\u7587\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\u5be6\u8e10\u795e\u5b78\u79d1\u9000\u4f11\u8b1b\u5e2b \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\u8ab22025\u5e745\u670827\u65e5\u81f36\u670824\u65e5 \uff08\u96646\u670817\u65e5\u5916\uff0c\u9022\u79ae\u62dc\u4e8c\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 2025\u5e746\u67085\u300112\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\u65bc5\u670820\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 \u8ab2\u7a0b\u5b78\u54e1\uff0c\u53ef\u5e36\u540c\u4e00\u81f3\u5169\u4f4d\u5408\u5531\u4f19\u4f34\u51fa\u5e2d2025\u5e746\u67085\u300112\u65e5\u5be6\u6cc1\u89c0\u6469\u8ab2\u3002 \u622a\u6b62\u5831\u540d\u65e5\u671f 2025-5-20 \u5831\u540d\u8868 \u7db2\u4e0a\u5831\u540d \u4e0b\u8f09\u5831\u540d\u8868\u683c"}