{"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":"\u57fa\u790e\u6307\u63ee\uff08\u4e00\uff09 - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"DH3d6rrb4W\"><a href=\"https:\/\/www.hkbts.edu.hk\/en\/waec\/%e5%9f%ba%e7%a4%8e%e6%8c%87%e6%8f%ae%ef%bc%88%e4%b8%80%ef%bc%89\/\">Basic command (1)<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/en\/waec\/%e5%9f%ba%e7%a4%8e%e6%8c%87%e6%8f%ae%ef%bc%88%e4%b8%80%ef%bc%89\/embed\/#?secret=DH3d6rrb4W\" width=\"600\" height=\"338\" title=\"\u201cBasic Conducting (I)\u201d \u2014 Hong Kong Baptist Theological Seminary\" data-secret=\"DH3d6rrb4W\" 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 \u57fa\u790e\u6307\u63ee\uff08\u4e00\uff09 Pls refer to the Chinese page \u8ab2\u7a0b \u57fa\u790e\u6307\u63ee\uff08\u4e00\uff09&#8211;\u63a5\u53d7\u5831\u540d \u5167\u5bb9 \u672c\u8ab2\u7a0b\u9069\u5408\u6709\u5fd7\u6210\u70ba\u6307\u63ee\u7684\u5b78\u54e1\uff0c\u8ab2\u7a0b\u5c07\u4ecb\u7d39\u57fa\u790e\u7684\u6307\u63ee\u64ca\u62cd\u4e26\u91cd\u9ede\u5f15\u5c0e\u5b78\u54e1\u5efa\u7acb\u81ea\u7136\u7684\u6307\u63ee\u624b\u6cd5\uff0c\u53ca\u63d0\u9ad8\u5b78\u54e1\u8207\u5408\u5531\u5718\u54e1\u6e9d\u901a\u7684\u610f\u8b58\u3002\u9664\u6b63\u5f0f\u5b78\u54e1\u5916\uff0c\u4ea6\u6b61\u8fce\u65c1\u807d\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 \u5c0d\u8c61 \u6709\u5fd7\u6210\u70ba\u6307\u63ee\u8005\u3001\u9818\u5531\u8005\uff0c\u5b78\u9662\u97f3\u6a02\u8001\u5e2b\u53ca\u97f3\u6a02\u611b\u597d\u8005\u3002\u9808\u5177\u57fa\u672c\u6a02\u7406\u53ca\u8b80\u8b5c\u8996\u5531\u80fd\u529b\u3002\u6b61\u8fce\u4fee\u8b80\u8005\u5e36\u540c\u672a\u6709\u57fa\u672c\u6a02\u7406\u53ca\u8b80\u8b5c\u8996\u5531\u8a13\u7df4\u4e4b\u5408\u5531\u5718\u968a\u6210\u54e1\u3001\u6b4c\u5531\u611b\u597d\u8005\u65c1\u807d\u3002 \u65e5\u671f 2024\u5e747\u6708 29\u65e5\u30018\u6708 5\u300119\u65e5\u30019\u67082\u30019\u300116\u65e5\uff08\u9022\u79ae\u62dc\u4e00\uff0c\u5171\u516d\u5802\uff09 \u6642\u9593 7:30 \u2013\u00a09:30pm \u8cbb\u7528 \u6307\u63ee\u5b78\u54e1HK$1,470 \uff08\u4e09\u4eba\u6216\u4ee5\u4e0a\u96c6\u9ad4\u5831\u8b80\uff0c\u6216\u65bc7\u670824\u65e5\u524d\u4ee5\u500b\u4eba\u8eab\u4efd\u5831\u8b80\uff0c\u5b78\u8cbb\u6bcf\u4eba\u70baHK$1,350\uff09 \uff08\u6bcf\u4f4d\u6307\u63ee\u5b78\u54e1\u53ef\u90802\u81f33\u4f4d\u5925\u4f34\u514d\u8cbb\u53c3\u8207\u6210\u70ba\u5408\u5531\u6210\u54e1\uff09 \u540d\u984d \u6307\u63ee\u5b78\u54e16\u4eba\uff0c\u5408\u5531\u6210\u54e118\u4eba \uff08\u6307\u63ee\u5b78\u54e1\u90545\u4eba\u6216\u4ee5\u4e0a\u5831\u8b80\u624d\u958b\u8ab2\uff09 \u5831\u540d\u8868 \u7db2\u4e0a\u5831\u540d \u4e0b\u8f09\u5831\u540d\u8868\u683c \u672c\u8ab2\u7a0b\u9069\u5408\u6709\u5fd7\u6210\u70ba\u6307\u63ee\u7684\u5b78\u54e1\uff0c\u8ab2\u7a0b\u5c07\u4ecb\u7d39\u57fa\u790e\u7684\u6307\u63ee\u64ca\u62cd\u4e26\u91cd\u9ede\u5f15\u5c0e\u5b78\u54e1\u5efa\u7acb\u81ea\u7136\u7684\u6307\u63ee\u624b\u6cd5\uff0c\u53ca\u63d0\u9ad8\u5b78\u54e1\u8207\u5408\u5531\u5718\u54e1\u6e9d\u901a\u7684\u610f\u8b58\u3002\u9664\u6b63\u5f0f\u5b78\u54e1\u5916\uff0c\u4ea6\u6b61\u8fce\u65c1\u807d\u3002"}