{"version":"1.0","provider_name":"\u9999\u6e2f\u6d78\u4fe1\u4f1a\u795e\u5b66\u9662","provider_url":"https:\/\/www.hkbts.edu.hk\/zh_cn","author_name":"wordpress_publish","author_url":"https:\/\/www.hkbts.edu.hk\/zh_cn\/?p=author\/wordpress_publish\/","title":"\u9760\u8056\u9748\u800c\u6d3b\u3000\u9760\u8056\u9748\u800c\u884c - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"3xMIxzR5nm\"><a href=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/presmessage\/keeping-in-step-with-the-spirit\/\">\u9760\u5723\u7075\u800c\u6d3b\u9760\u5723\u7075\u800c\u884c<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/presmessage\/keeping-in-step-with-the-spirit\/embed\/#?secret=3xMIxzR5nm\" width=\"600\" height=\"338\" title=\"\u300a \u9760\u5723\u7075\u800c\u6d3b\u9760\u5723\u7075\u800c\u884c\u300b\u2014\u9999\u6e2f\u6d78\u4fe1\u4f1a\u795e\u5b66\u9662\" data-secret=\"3xMIxzR5nm\" 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":"\u9760\u8056\u9748\u800c\u6d3b\u3000\u9760\u8056\u9748\u800c\u884c \u91cd\u6574\u822a\u7a0b \u611f\u8b1d\u795e\u7684\u6069\u9818\uff0c2023\u5e748\u6708\u65b0\u5b78\u5e74\u958b\u59cb\uff0c\u6a19\u8a8c\u8457\u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662\u5728\u4e09\u4e00\u795e\u7684\u5e36\u9818\u4e0b\uff0c\u91cd\u6574\u822a\u7a0b\u3002\u4e0d\u5f97\u4e0d\u518d\u6b21\u611f\u8b1d\u5169\u4f4d\u526f\u9662\u9577\u9ec3\u798f\u5149\u6559\u6388\u53ca\u5433\u570b\u5091\u6559\u6388\uff01\u4ed6\u5011\u540c\u5fc3\u5354\u4f5c\uff0c\u7518\u5fc3\u6a02\u610f\u627f\u64d4\u5b78\u9662\u5167\u90e8\u7684\u9818\u5c0e\u5de5\u4f5c\uff0c\u6700\u8fd1\u53c8\u70ba\u672c\u9662\u5feb\u5c07\u63a5\u53d7\u6771\u5357\u4e9e\u795e\u5b78\u6559\u80b2\u5354\u6703\u7684\u5b78\u8853\u8a55\u5be9\uff0c\u5b8c\u6210\u4e86\u4e00\u4efd\u81ea\u8a55\u5831\u544a\u66f8\u3002\u5169\u4eba\u70ba\u5b78\u9662\u76e1\u5fc3\u7aed\u529b\uff0c\u6bb7\u52e4\u670d\u4f8d\uff0c\u614b\u5ea6\u8a8d\u771f\uff0c\u5be6\u5728\u611f\u6069\uff01\u9019\u8b93\u6211\u53ef\u4ee5\u9a30\u51fa\u6642\u9593\u548c\u7cbe\u529b\uff0c\u5c08\u5fc3\u5c0d\u5916\u806f\u7e6b\u53ca\u70ba\u5b78\u9662\u7c4c\u63aa\u8cc7\u6e90\uff0c\u4e26\u4e14\u9032\u4e00\u6b65\u63a8\u5c55\u6559\u6703\u7684\u795e\u5b78\u6559\u80b2\u4e8b\u5de5\uff0c\u63a8\u52d5\u6559\u7814\u5de5\u4f5c\uff0c\u5efa\u7acb\u9069\u5207\u7684\u795e\u5b78\u3002 \u53bb\u5e7411\u6708\uff0c\u6211\u5230\u5357\u4eac\u91d1\u9675\u5354\u548c\u795e\u5b78\u9662\u8b1b\u5b78\uff0c\u5e36\u9818\u535a\u58eb\u73ed\u5b78\u751f\u7814\u8b80\u7576\u4ee3\u7684\u795e\u5b78\u601d\u60f3\uff0c\u4e26\u4e14\u6307\u5c0e\u4ed6\u5011\u64b0\u5beb\u8ad6\u6587\u3002\u4ed6\u5011\u5c6c\u65bc\u4e2d\u570b\u6559\u6703\u5e74\u8f15\u7684\u4e00\u4ee3\uff0c\u505a\u4e8b\u52e4\u596e\uff0c\u614b\u5ea6\u8b19\u905c\uff0c\u53c8\u6709\u601d\u8003\u529b\u3002\u611f\u8b1d\u795e\u8b93\u6211\u8fd1\u5e74\u6709\u6a5f\u6703\u53c3\u8207\u6b64\u9805\u8056\u5de5\uff0c\u6709\u5206\u57f9\u8a13\u4e2d\u570b\u6559\u6703\u672a\u4f86\u7684\u795e\u5b78\u53ca\u6559\u7267\u4eba\u624d\u3002 \u53bb\u5e7412\u67084\u65e5\u53ca11\u65e5\uff0c\u6211\u5011\u5728\u65b0\u6559\u7814\u5927\u6a13\u4e09\u6a13\u6703\u8b70\u5ef3\u8209\u8fa6\u4e86\u5169\u5834\u300c\u5fae\u8b1b\u5ea7\u300d\uff0c\u5206\u5225\u9080\u8acb\u4e86\u8449\u656c\u5fb7\u535a\u58eb\u53ca\u6797\u5fb7\u5e73\u535a\u58eb\uff0c\u8207\u672c\u9662\u6821\u53cb\u53ca\u8001\u5e2b\u5206\u4eab\u300c\u81ea\u6bba\u300d\u53ca\u300c\u57fa\u7763\u6559\u6559\u80b2\u300d\u9019\u5169\u500b\u8ab2\u984c\u3002\u4ed6\u5011\u5169\u4f4d\u662f\u6211\u7684\u6df1\u4ea4\u597d\u53cb\uff0c\u5927\u5bb6\u96d6\u7136\u4e0d\u662f\u7d93\u5e38\u78b0\u9762\u805a\u982d\uff0c\u4f46\u5728\u6211\u4eba\u751f\u4e0d\u540c\u968e\u6bb5\u7684\u91cd\u8981\u6642\u523b\u548c\u95dc\u5361\uff0c\u4ed6\u5011\u7e3d\u662f\u7fa9\u4e0d\u5bb9\u8fad\u5730\u966a\u6211\u8d70\u904e\uff0c\u7d66\u6211\u771f\u8aa0\u7684\u5e6b\u52a9\u548c\u9f13\u52f5\uff0c\u53c8\u5354\u52a9\u63a8\u52d5\u795e\u5b78\u6559\u80b2\u7684\u767c\u5c55\u3002\u6b64\u5916\uff0c\u4eca\u5e741\u6708\uff0c\u5b78\u9662\u5c07\u8209\u8fa6\u53e6\u4e00\u5834\u300c\u5fae\u8b1b\u5ea7\u300d\uff0c\u662f\u95dc\u65bc\u300c\u6210\u5e74\u521d\u986f\u671f\u300d\u7684\u7267\u990a\u5de5\u4f5c\uff0c\u671f\u76fc\u53ef\u4ee5\u5e6b\u52a9\u9752\u5c11\u5e74\u7267\u8005\u66f4\u6df1\u8a8d\u8b58\u5176\u7267\u990a\u5c0d\u8c61\u3002 &nbsp; \u5f9e\u8056\u9748\u800c\u751f \u9019\u6bb5\u65e5\u5b50\uff0c\u8a69\u7bc7\u4e00\u7bc73\u7bc0\u5e38\u5e38\u6d6e\u73fe\u5728\u8166\u6d77\uff1a\u7fa9\u4eba\u300c\u8981\u50cf\u4e00\u68f5\u6a39\u683d\u5728\u6eaa\u6c34\u65c1\uff0c\u6309\u6642\u5019\u7d50\u679c\u5b50\uff0c\u8449\u5b50\u4e5f\u4e0d\u67af\u4e7e\u3002\u51e1\u4ed6\u6240\u505a\u7684\u76e1\u90fd\u9806\u5229\u300d\u3002\u7fa9\u4eba\u300c\u559c\u611b\u8036\u548c\u83ef\u7684\u5f8b\u6cd5\uff0c\u665d\u591c\u601d\u60f3\u300d\uff08\u4e002\uff09\uff0c\u800c\u8056\u9748\u5c31\u4f4f\u5728\u4ed6\u5011\u88cf\u9762\uff0c\u53eb\u4ed6\u5011\u7d50\u51fa\u751f\u547d\u7684\u679c\u5b50\uff1a\u4ec1\u611b\u3001\u559c\u6a02\u3001\u548c\u5e73\u3001\u5fcd\u8010\u3001\u6069\u6148\u3001\u826f\u5584\u3001\u4fe1\u5be6\u3001\u6eab\u67d4\u3001\u7bc0\u5236\u3002\u6b64\u5916\uff0c\u6211\u4e5f\u5e38\u5e38\u601d\u60f3\u8056\u9748\u3002\u60f3\u8d77\u8056\u9748\uff0c\u53c8\u60f3\u5230\u4e94\u65ec\u7bc0\u7684\u6545\u4e8b\uff0c\u4e26\u4e14\u53eb\u6211\u6df1\u601d\u52a0\u62c9\u592a\u66f8\u4e94\u7ae025\u7bc0\u7684\u610f\u601d\uff1a\u300c\u6211\u5011\u82e5\u9760\u8457\u8056\u9748\u800c\u6d3b\uff0c\u4e5f\u8981\u9760\u8457\u8056\u9748\u884c\u4e8b\u3002\u300d \u6839\u64da\u4f7f\u5f92\u884c\u50b3\u7b2c\u4e8c\u7ae0\uff0c\u4e94\u65ec\u7bc0\u767c\u751f\u7684\u4e8b\u95dc\u4e4e\u6559\u6703\u7684\u8a95\u751f\u3002\u4e94\u65ec\u7bc0\u90a3\u5929\uff0c\u8036\u7a4c\u7684\u9580\u5f92\u805a\u96c6\u5728\u4e00\u6240\u623f\u5b50\u3002\u4ed6\u5011\u75b2\u618a\u4e0d\u582a\uff0c\u7070\u5fc3\u55aa\u5fd7\uff0c\u81ea\u89ba\u5931\u6557\uff0c\u56e0\u70ba\u4ed6\u5011\u6d3b\u5728\u4e00\u500b\u5206\u5d29\u96e2\u6790\u7684\u4e16\u754c\uff0c\u800c\u4ed6\u5011\u7684\u9818\u8896\u8036\u7a4c\u57fa\u7763\u53c8\u5df2\u7d93\u5347\u5929\uff0c\u4e0d\u518d\u8207\u4ed6\u5011\u540c\u5728\u3002 \u53ef\u662f\uff0c\u5947\u7279\u7684\u4e8b\u60c5\u767c\u751f\u4e86\uff01\u5f9e\u5929\u4e0a\u50b3\u4f86\u97ff\u8072\uff0c\u5982\u4e00\u9663\u5f37\u98a8\uff0c\u5145\u6eff\u6574\u500b\u623f\u5b50\uff0c\u53c8\u6709\u597d\u50cf\u706b\u7130\u7684\u820c\u982d\u986f\u73fe\u51fa\u4f86\uff0c\u5206\u958b\u843d\u5728\u9580\u5f92\u8eab\u4e0a\u3002\u9580\u5f92\u597d\u50cf\u53d7\u4e86\u5982\u98a8\u5982\u706b\u7684\u6d78\u79ae\uff0c\u4ed6\u5011\u90fd\u88ab\u8056\u9748\u5145\u6eff\uff0c\u7372\u8cdc\u529b\u91cf\u626d\u8f49\u4e16\u754c\u3002\u9019\u529b\u91cf\u4e0d\u662f\u91d1\u9322\uff0c\u4e0d\u662f\u5236\u5ea6\uff0c\u4e0d\u662f\u52e2\u529b\uff0c\u800c\u662f\u795e\u7684\u6c23\u606f\u548c\u80fd\u529b\u3002\u9580\u5f92\u6309"}