{"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":"\u6559\u5c0e\u516c\u7fa9 - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"sLcfAE7VXS\"><a href=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/presmessage\/teaching-justice\/\">\u6559\u5bfc\u516c\u4e49<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/presmessage\/teaching-justice\/embed\/#?secret=sLcfAE7VXS\" width=\"600\" height=\"338\" title=\"\u300a \u6559\u5bfc\u516c\u4e49\u300b\u2014\u9999\u6e2f\u6d78\u4fe1\u4f1a\u795e\u5b66\u9662\" data-secret=\"sLcfAE7VXS\" 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 \u6559\u5c0e\u516c\u7fa9 \u300c\u4e09\u5408\u4e00\u300d\u7684\u547d\u4ee4 \u3000\u3000\u6559\u6703\u82e5\u8981\u5065\u5eb7\u5730\u6210\u9577\uff0c\u4e0d\u50c5\u9808\u8981\u8457\u91cd\u5d07\u62dc\u3001\u8b1b\u9053\u3001\u5ba3\u6559\u548c\u95dc\u9867\uff0c\u4e5f\u8981\u6709\u597d\u7684\u6559\u80b2\u3002\u597d\u7684\u6559\u80b2\u662f\u611b\u7684\u6559\u80b2\u3002 \u3000\u3000\u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662\u904e\u53bb\u516b\u5e74\u6b63\u662f\u52aa\u529b\u5faa\u9019\u6a23\u7684\u8def\u5f91\u524d\u9032\u3002\u6211\u5011\u7684\u5e2b\u751f\u904e\u5f80\u591a\u5e74\u4e00\u540c\u7528\u5fc3\u5b78\u7fd2\u5ba3\u8b1b\u3001\u5ba3\u6559\u3001\u95dc\u9867\uff0c\u800c\u6700\u8fd1\u4e00\u5e74\u591a\uff0c\u6211\u5011\u5c24\u5176\u8457\u91cd\u57fa\u7763\u6559\u6559\u80b2\uff0c\u5c0d\u9019\u8ab2\u984c\u4f5c\u66f4\u6df1\u5165\u7684\u601d\u8003\u3002\u6211\u5011\u76f8\u4fe1\u597d\u7684\u6559\u80b2\u662f\u611b\u7684\u6559\u80b2\u3002\u6211\u4e5f\u76f8\u4fe1\u611b\u7684\u6559\u80b2\u662f\u516c\u7fa9\u7684\u6559\u80b2\u2014\u2014\u6211\u5011\u8981\u6559\u5c0e\u516c\u7fa9\u3002 \u3000\u3000\u8981\u660e\u767d\u300c\u6559\u5c0e\u516c\u7fa9\u300d\u7684\u610f\u601d\uff0c\u6211\u5011\u5f97\u7d30\u5473\u5f4c\u8fe6\u66f8\u516d\u7ae08\u7bc0\u7684\u6db5\u610f\uff1a\u300c\u4e16\u4eba\u54ea\uff0c\u8036\u548c\u83ef\u5df2\u6307\u793a\u4f60\u4f55\u70ba\u5584\u3002\u4ed6\u5411\u4f60\u6240\u8981\u7684\u662f\u751a\u9ebc\u5462\uff1f\u53ea\u8981\u4f60\u884c\u516c\u7fa9\uff0c\u597d\u6190\u61ab\uff0c\u5b58\u8b19\u5351\u7684\u5fc3\uff0c\u8207\u4f60\u7684\u795e\u540c\u884c\u3002\u300d \u3000\u3000\u5f4c\u8fe6\u66f8\u516d\u7ae08\u7bc0\u7684\u80cc\u666f\uff0c\u6d89\u53ca\u8036\u548c\u83ef\u9577\u4e45\u4ee5\u4f86\u5c0d\u4ee5\u8272\u5217\u7684\u63a7\u8a34\u30021\u81f32\u7bc0\u63ed\u958b\u4e86\u4e00\u5e55\u6cd5\u5ead\u8a34\u8a1f\u7684\u60c5\u666f\u3002\u8036\u548c\u83ef\u8981\u8207\u4ee5\u8272\u5217\u722d\u8faf\uff0c\u7942\u7684\u63a7\u8a34\u662f\u4ee5\u8272\u5217\u767e\u59d3\u9055\u53cd\u4e86\u4ed6\u5011\u8ddf\u7942\u6240\u7acb\u7684\u7d04\u3002 \u3000\u3000\u53ef\u662f\uff0c\u8036\u548c\u83ef\u5728\u63d0\u51fa\u63a7\u8a34\u524d\uff0c\u537b\u5148\u554f\u4ee5\u8272\u5217\u6c11\uff1a\u300c\u6211\u7684\u767e\u59d3\u554a\uff0c\u6211\u5411\u4f60\u505a\u4e86\u751a\u9ebc\u5462\uff1f\u6211\u5728\u751a\u9ebc\u4e8b\u4e0a\u4f7f\u4f60\u53ad\u7169\uff1f\u4f60\u53ef\u4ee5\u5c0d\u6211\u8b49\u660e\u3002\u300d\uff08\u7b2c3\u7bc0\uff09\u63a5\u8457\uff0c\u8036\u548c\u83ef\u8ff0\u8aaa\u7942\u70ba\u4ee5\u8272\u5217\u4eba\u6240\u4f5c\u7684\u4e8b\u60c5\uff0c\u7942\u6307\u51fa\u81ea\u5df1\u66fe\u6551\u8d16\u4ed6\u5011\uff0c\u6551\u4ed6\u5011\u812b\u96e2\u57c3\u53ca\u7684\u56da\u7981\u3002\u7b2c6\u7bc0\u8a18\u8f09\u4e86\u4ee5\u8272\u5217\u4eba\u7684\u56de\u61c9\uff0c\u4ed6\u5011\u5411\u8036\u548c\u83ef\u767c\u554f\uff1a\u300c\u6211\u671d\u898b\u8036\u548c\u83ef\uff0c\u5728\u81f3\u9ad8\u795e\u9762\u524d\u8dea\u62dc\uff0c\u7576\u737b\u4e0a\u751a\u9ebc\u5462\uff1f\u8c48\u53ef\u737b\u4e00\u6b72\u7684\u725b\u72a2\u70ba\u71d4\u796d\u55ce\uff1f\u300d\u4ed6\u5011\u63a5\u8457\u9084\u5c07\u554f\u984c\u5347\u7d1a\uff0c\u9032\u4e00\u6b65\u63d0\u51fa\u7591\u554f\uff1a\u662f\u5426\u8981\u737b\u4e0a\u725b\u72a2\u3001\u5343\u5343\u7684\u516c\u7f8a\u3001\u842c\u842c\u7684\u6cb9\u6cb3\uff0c\u751a\u81f3\u737b\u4e0a\u9577\u5b50\u70ba\u71d4\u796d\uff0c\u4fbf\u53ef\u4ee5\u8d16\u7f6a\uff1f \u3000\u3000\u9019\u6a23\u7684\u8d16\u7f6a\u89c0\u662f\u932f\u8aa4\u7684\u3002\u4ed6\u5011\u8a72\u77e5\u9053\uff1a\u8d16\u7f6a\u4e0d\u662f\u737b\u4e0a\u796d\u7269\u7684\u4ea4\u6613\uff1b\u4ed6\u5011\u7576\u77e5\u9053\uff1a\u795e\u6240\u8981\u6c42\u7684\uff0c\u662f\u4ee5\u8272\u5217\u4eba\u5b88\u7d04\uff0c\u6210\u70ba\u7942\u7684\u5b50\u6c11\u3002\u56e0\u6b64\uff0c\u7b2c8\u7bc0\u8a18\u8ff0\u5275\u9020\u4e3b\u5411\u4ee5\u8272\u5217\u6c11\u4ee5\u81f3\u6240\u6709\u4eba\u767c\u51fa\u554f\u984c\uff1a\u300c\u4e16\u4eba\u54ea\uff0c\u8036\u548c\u83ef\u5df2\u6307\u793a\u4f60\u4f55\u70ba\u5584\u3002\u4ed6\u5411\u4f60\u6240\u8981\u7684\u662f\u751a\u9ebc\u5462\uff1f\u300d \u795e\u7684\u7b54\u6848\u662f\uff1a\u300c\u53ea\u8981\u4f60\u884c\u516c\u7fa9\uff0c\u597d\u6190\u61ab\uff0c\u5b58\u8b19\u5351\u7684\u5fc3\uff0c\u8207\u4f60\u7684\u795e\u540c\u884c\u3002\u300d \u3000\u3000\u795e\u8981\u6c42\u6211\u5011\u9075\u884c\u7684\u7d04\uff0c\u662f\u4e00\u500b\u300c\u4e09\u5408\u4e00\u300d\uff08triad\uff09\u7684\u547d\u4ee4\u3002\u9019\u547d\u4ee4\u7684\u524d\u5169\u90e8\u5206\uff0c\u662f\u4ee5\u8272\u5217\u4eba\u6240\u719f\u6089\u7684\u7d04\u7684\u5171\u540c\u8cac\u4efb\uff1a\u300c\u884c\u516c\u7fa9\u300d\u548c\u300c\u597d\u6190\u61ab\u300d\u3002\u300c\u884c\u516c\u7fa9\u300d\uff08mispat\uff09\u662f\u8981\u597d\u597d\u7167\u9867\u9130\u820d\uff1b\u300c\u597d\u6190\u61ab\u300d\uff08hesed\uff09\u662f\u8981\u5be6\u8e10\u4f11\u621a\u8207\u5171\u7684\u751f\u6d3b\u3002 \u300c\u4e09\u5408\u4e00\u300d\u547d\u4ee4\u7684\u7b2c\u4e09\u90e8\u5206\uff0c\u5247\u662f\u300c\u5b58\u8b19\u5351\u7684\u5fc3\uff0c\u8207\u4f60\u7684\u795e\u540c\u884c\u300d\u3002\u5148\u77e5\u63d0\u9192\u4eba\u8981\u300c\u5b58\u8b19\u5351\u7684\u5fc3\u300d\uff0c \u8e0f\u4e0a\u300c\u516c\u7fa9\u300d\u548c\u300c\u6190\u61ab\u300d\u7684\u9053\u8def\uff0c\u300c\u8207\u4f60\u7684\u795e\u540c\u884c\u300d\u3002\u5728\u9019\u88e1\u6211\u5011\u53ef\u4ee5\u5f9e\u7d93\u6587\u601d\u8003\u300c\u884c\u516c\u7fa9\u300d\u7684\u610f\u7fa9\uff0c\u601d\u8003\u5b83\u5982\u4f55\u8207\u300c\u597d\u6190\u61ab\u300d\u3001\u300c\u5b58\u8b19\u5351\u7684\u5fc3\u8207\u795e\u540c\u884c\u300d\u4e92\u76f8\u7d50\u5408\u3002 \u884c\u516c\u7fa9 \u3000\u3000\u300c\u884c\u516c\u7fa9\u300d\u662f\u300c\u4f5c\u516c\u7fa9\u300d\uff08do justi"}