{"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":"\u6dfa\u8ac7\u865b\u8b0a - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"URMxe116is\"><a href=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/presmessage\/on-deception\/\">\u6d45\u8c08\u865a\u8c0e<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/presmessage\/on-deception\/embed\/#?secret=URMxe116is\" width=\"600\" height=\"338\" title=\"\u300a \u6d45\u8c08\u865a\u8c0e\u300b\u2014\u9999\u6e2f\u6d78\u4fe1\u4f1a\u795e\u5b66\u9662\" data-secret=\"URMxe116is\" 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":"\u5b78\u9662\u7c21\u4ecb \u8fd4\u56de\u4e3b\u9801 \u9662\u9577\u7684\u8a71 \u66f9\u5049\u5f64\u9662\u9577 \u00a0 \u6dfa\u8ac7\u865b\u8b0a \u3000\u30002009\u5e74\u4ee5\u4f86\uff0c\u6211\u4e00\u76f4\u601d\u60f3\u5be6\u8e10\u795e\u5b78\uff0c\u4e26\u4e14\u9010\u6b65\u767c\u5c55\u5176\u65b9\u5411\u53ca\u5167\u6db5\uff0c\u5176\u85cd\u672c\u53ef\u898b\u65bc2009\u5e74\u4ea4\u7d66\u672c\u9662\u8463\u4e8b\u6703\u7684\u5341\u5e74\u8a08\u5283\u66f8\u7684\u6587\u7a3f\u3002\u56e0\u8457\u795e\u7684\u6069\u9818\uff0c\u6211\u597d\u50cf\u6709\u610f\u7121\u610f\u5730\u63a8\u52d5\u8457\u5be6\u8e10\u795e\u5b78\uff0c\u4e26\u843d\u5be6\u5176\u7406\u5ff5\u3002\u6700\u8fd1\uff0c\u6211\u53c8\u6709\u6a5f\u6703\u4ee5\u6dfa\u767d\u7684\u8a00\u8a9e\u8ac7\u8ad6\u5be6\u8e10\u795e\u5b78\u3002 \u3000\u3000\u4eca\u5e74\u521d\u6211\u8ddf\u516b\u4f4d\u540c\u5b78\u4e00\u8d77\u7d30\u8b80\u4faf\u6d3b\u58eb\uff08Stanley Hauerwas\uff09\u7684\u300a\u548c\u5e73\u7684\u570b\u5ea6\u300b\uff08The Peaceable Kingdom\uff09\uff0c* \u91cd\u65b0\u601d\u60f3\u795e\u7684\u548c\u5e73\u570b\u5ea6\u3002\u6211\u5e38\u5e38\u4e3b\u5f35\uff0c\u82e5\u8981\u7814\u8b80\u67d0\u4f4d\u795e\u5b78\u5bb6\u7684\u601d\u60f3\uff0c\u5c31\u8981\u95b1\u8b80\u5176\u539f\u8457\uff0c\u4e0d\u8981\u55ae\u55ae\u807d\u4eba\u5bb6\u8f49\u8ff0\u5176\u60f3\u6cd5\u3002\u7cdf\u7cd5\u7684\u60c5\u6cc1\u662f\uff0c\u6211\u5011\u53ea\u807d\u4fe1\u90a3\u4e9b\u7d93\u904e\u4e0d\u540c\u4eba\u591a\u756a\u8f3e\u8f49\u50b3\u905e\u6240\u5f97\u7684\u7406\u89e3\uff0c\u7d50\u679c\u5c0d\u6709\u95dc\u601d\u60f3\u5c31\u53ea\u662f\u4e00\u77e5\u534a\u89e3\u3002\u6b63\u9762\u4f86\u8aaa\uff0c\u82e5\u8981\u7406\u89e3\u67d0\u4f4d\u91cd\u8981\u795e\u5b78\u5bb6\u7684\u601d\u60f3\uff0c\u5c31\u8981\u89aa\u8eab\u7d30\u95b1\u539f\u8457\uff0c\u4e0d\u80fd\u5b8c\u5168\u5047\u624b\u65bc\u4eba\uff0c\u53ea\u4fe1\u8cf4\u4e8c\u624b\u7684\u6750\u6599\u3002\u4e26\u4e14\uff0c\u6211\u5011\u8981\u6309\u7167\u4f5c\u8005\u8eab\u8655\u7684\u8108\u7d61\u4f86\u5206\u8fa8\u5c0d\u932f\u3001\u597d\u58de\uff0c\u4ee5\u53ca\u5176\u9069\u5207\u6027\uff0c\u7136\u5f8c\u5617\u8a66\u60f3\u50cf\u6709\u95dc\u601d\u60f3\u843d\u5be6\u53ca\u8e10\u884c\u5728\u6211\u5011\u8eab\u8655\u7684\u8108\u7d61\u7684\u53ef\u80fd\u6027\u53ca\u53ef\u884c\u6027\u3002 \u3000\u3000\u9019\u6b21\uff0c\u6211\u5e36\u9818\u540c\u5b78\u7d30\u95b1\u4faf\u6d3b\u58eb\u9019\u672c\u8457\u4f5c\uff0c\u9f13\u52f5\u4ed6\u5011\u8a8d\u771f\u5730\u8b80\uff0c\u7136\u5f8c\u8ddf\u4ed6\u5011\u4e00\u540c\u9010\u9801\u601d\u8003\u8a55\u6790\u3002\u5f88\u5947\u5999\uff0c\u6211\u6108\u767c\u611f\u53d7\u5230\u6700\u8fd1\u95b1\u8b80\u7684\u66f8\uff0c\u4e5f\u63d0\u4f9b\u4e86\u5be6\u8e10\u795e\u5b78\u7684\u4e00\u4e9b\u91cd\u8981\u5167\u5bb9\u3002\u73fe\u5728\u8b93\u6211\u8ddf\u5927\u5bb6\u5206\u4eab\u4e00\u4e0b\u5176\u4e2d\u9ede\u9ede\u6ef4\u6ef4\u7684\u555f\u767c\u548c\u4eae\u5149\uff0c\u9019\u4e9b\u90fd\u662f\u6211\u5011\u9808\u7dca\u8a18\u4e26\u5b78\u7fd2\u8e10\u884c\u7684\u3002 \u4eba\u985e\u504f\u611b\u81ea\u6b3a \u3000\u3000\u4faf\u6d3b\u58eb\u5728\u300a\u548c\u5e73\u7684\u570b\u5ea6\u300b\u4e0d\u6642\u63d0\u53ca\u4eba\u9593\u7684\u865b\u8b0a\uff0c\u9019\u662f\u5c0d\u6211\u5011\u5f88\u597d\u7684\u63d0\u9192\u3002\u4ed6\u6307\u51fa\uff0c\u4eba\u504f\u611b\u81ea\u6b3a\uff0c\u4ee5\u70ba\u6211\u5011\u5c31\u662f\u81ea\u5df1\u5b58\u6709\u7684\u4e3b\u4eba\uff0c\u628a\u9019\u5e7b\u60f3\u7576\u4f5c\u73fe\u5be6\u3002\u6211\u5011\u5728\u300c\u611b\u300d\u548c\u300c\u89aa\u5bc6\u300d\u7684\u4e8b\u60c5\u4e0a\u6700\u5e38\u6b3a\u9a19\u81ea\u5df1\u548c\u5225\u4eba\u3002\u6211\u5011\u96e3\u4ee5\u80af\u5b9a\u81ea\u5df1\u662f\u8ab0\uff0c\u6216\u77e5\u9053\u81ea\u5df1\u60f3\u8981\u751a\u9ebc\u3002\u6211\u5011\u64cd\u7e31\u5225\u4eba\uff0c\u4ee4\u5225\u4eba\u5c0a\u91cd\u81ea\u5df1\uff0c\u4e26\u4e14\u300c\u5229\u7528\u300d\u6211\u5011\u7684\u611b\u548c\u90a3\u4e9b\u6211\u5011\u6240\u611b\u7684\u4eba\uff08\u9801142\uff09\u3002 \u3000\u3000\u6709\u4e9b\u4eba\u597d\u50cf\u5f88\u5766\u8aa0\uff0c\u627f\u8a8d\u81ea\u5df1\u7684\u81ea\u79c1\u6216\u61a4\u4e16\u5ac9\u4fd7\uff0c\u5ba3\u7a31\u81ea\u5df1\u300c\u6c92\u6709\u4efb\u4f55\u5fb7\u6027\uff0c\u53ea\u6703\u7121\u689d\u4ef6\u5730\u8ffd\u6c42\u81ea\u5df1\u7684\u5229\u76ca\u300d\u3002\u4ed6\u5011\u8a66\u5716\u5728\u8b0a\u8a00\u7684\u6d77\u6d0b\u4e2d\uff0c\u5275\u9020\u4e00\u500b\u8aa0\u5be6\u7684\u5b64\u5cf6\u3002\u5176\u5be6\uff0c\u4ed6\u5011\u4e5f\u662f\u5728\u81ea\u6b3a\u3002\u7531\u65bc\u4e0d\u4fe1\u4efb\u6240\u6709\u4eba\uff0c\u6700\u7d42\u751a\u81f3\u4e0d\u4fe1\u4efb\u81ea\u5df1\u7684\u69ae\u8b7d\u548c\u6b63\u76f4\uff0c\u7d50\u679c\u4ed6\u5011\u540d\u526f\u5176\u5be6\u8b8a\u5f97\u4e00\u6587\u4e0d\u503c\uff08\u9801142-143\uff09\u3002 \u5e7b\u8c61\u3001\u865b\u8b0a\u3001\u66b4\u529b \u3000\u3000\u4faf\u6d3b\u58eb\u53c8\u6307\u51fa\uff1a\u6211\u5011\u8d8a\u662f\u6210\u529f\u6b3a\u9a19\u81ea\u5df1\uff0c\u4fbf\u8d8a\u7aed\u529b\u4fdd\u8b77\u81ea\u5df1\u514d\u53d7\u4efb\u4f55\u6311\u6230\u3002\u6211\u5011\u64f4\u5927\u81ea\u5df1\u7684\u670b\u53cb\u5708\uff0c\u4f46\u537b\u4e0d\u6703\u9080\u8acb\u90a3\u4e9b\u6311\u6230\u6211\u5011\u5e7b\u8c61\u7684\u4eba\u3002\u7d50\u679c\uff0c\u6211\u5011\u7684\u300c\u670b\u53cb\u5708\u300d\u5be6\u969b\u6210\u4e86\u4e00\u7fa4\u89aa\u5bc6\u7684\u540c\u8b00\uff0c\u4ee5\u4fdd\u8b77\u6211\u5011\u7684\u5e7b\u8c61\uff08\u9801143\uff09\u3002\u5176\u4e2d\u6211\u5011\u6700\u5927\u7684\u5e7b\u8c61\u548c\u865b\u8b0a\uff0c\u5c31\u662f\u81ea\u4ee5\u70ba\u611b\u597d\u548c\u5e73\uff0c\u5176\u5be6\u559c\u611b\u66b4\u529b\u3002\u53ea\u6709\u6c92\u6709\u4eba\u6253\u64fe\u6211\u5011\u7684\u5e7b\u8c61\uff0c\u6211\u5011\u624d\u662f\u548c\u5e73\u7684\uff1b\u6c92\u6709\u4eba\u6311\u6230"}