{"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":"\u6d3b\u5728\u5176\u4e2d - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"NFzqurtgXj\"><a href=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/presmessage\/the-earth-on-which-we-live\/\">\u6d3b\u5728\u5176\u4e2d<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/presmessage\/the-earth-on-which-we-live\/embed\/#?secret=NFzqurtgXj\" width=\"600\" height=\"338\" title=\"\u300a \u6d3b\u5728\u5176\u4e2d\u300b\u2014\u9999\u6e2f\u6d78\u4fe1\u4f1a\u795e\u5b66\u9662\" data-secret=\"NFzqurtgXj\" 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 \u6d3b\u5728\u5176\u4e2d \u5728\u9999\u6e2f\u793e\u6703\uff0c\u74b0\u5883\u4fdd\u8b77\u7684\u8b70\u984c\u6108\u4f86\u6108\u53d7\u95dc\u6ce8\u3002\u751f\u614b\u5b78\u5bb6\u548c\u74b0\u4fdd\u5c08\u5bb6\u6307\u51fa\uff0c\u4eba\u985e\u64fe\u4e82\u81ea\u7136\u7684\u751f\u614b\u6f14\u66ff\uff08ecological succession\uff09\uff0c\u5c0d\u751f\u614b\u74b0\u5883\u9020\u6210\u56b4\u91cd\u7684\u7834\u58de\u3002\u807d\u898b\u9019\u4e9b\u8072\u97f3\uff0c\u6211\u5011\u8a72\u5982\u4f55\u56de\u61c9\uff1f \u5275\u9020\u8207\u7ba1\u6cbb \u4f5c\u70ba\u57fa\u7763\u5f92\uff0c\u6211\u5011\u76f8\u4fe1\u795e\u662f\u842c\u7269\u7684\u5275\u9020\u4e3b\u3002\u5275\u4e16\u4e4b\u524d\uff0c\u300c\u5730\u662f\u7a7a\u865b\u6df7\u6c8c\uff0c\u6df1\u6df5\u4e0a\u9762\u4e00\u7247\u9ed1\u6697\uff1b\u795e\u7684\u9748\u904b\u884c\u5728\u6c34\u9762\u4e0a\u300d\uff08\u5275\u4e002\uff09\uff0c\u4e16\u754c\u539f\u521d\u8655\u65bc\u865b\u7a7a\u7684\u7121\u5f62\u72c0\u614b\uff0c\u662f\u6df7\u4e82\u7684\u6c34\u57df\u3002\u795e\u53eb\u4e7e\u5730\u5f9e\u6c34\u4e2d\u9732\u51fa\u4f86\uff0c\u5f9e\u6df7\u4e82\u4e2d\u5efa\u7acb\u79e9\u5e8f\uff0c\u4f7f\u751f\u547d\u6210\u70ba\u53ef\u80fd\u3002\u6839\u64da\u5275\u4e16\u8a18\u4e00\u7ae03\u81f328\u7bc0\uff0c\u795e\u7528\u8a71\u8a9e\u5275\u9020\u842c\u7269\uff0c\u7942\u8aaa\u6709\uff0c\u5c31\u6709\uff1b\u4e26\u4e14\u7942\u770b\u81ea\u5df1\u6240\u5275\u9020\u7684\u4e00\u5207\uff0c\u90fd\u662f\u300c\u597d\u7684\u300d\u3002\u6700\u5f8c\uff0c\u795e\u53eb\u4eba\u985e\u7ba1\u6cbb\u5927\u5730\uff1a\u300c\u795e\u8cdc\u798f\u7d66\u4ed6\u5011\uff0c\u795e\u5c0d\u4ed6\u5011\u8aaa\uff1a\u300e\u8981\u751f\u990a\u773e\u591a\uff0c\u904d\u6eff\u9019\u5730\uff0c\u6cbb\u7406\u5b83\uff1b\u8981\u7ba1\u7406\u6d77\u88cf\u7684\u9b5a\u3001\u5929\u7a7a\u7684\u9ce5\u548c\u5730\u4e0a\u5404\u6a23\u6d3b\u52d5\u7684\u751f\u7269\u3002\u300f\u300d\uff0828\u7bc0\uff09 \u4ee5\u4eba\u70ba\u4e2d\u5fc3\u7684\u7ba1\u6cbb \u7ba1\u6cbb\u5927\u5730\u662f\u751a\u9ebc\u610f\u601d\uff1f\u6709\u4e9b\u4eba\u8a8d\u70ba\uff0c\u7ba1\u6cbb\u5927\u5730\u662f\u6307\u4eba\u53ef\u4ee5\u6309\u5176\u8a8d\u70ba\u5408\u9069\u7684\u65b9\u5f0f\uff0c\u4f7f\u7528\u5730\u7403\u4e0a\u7684\u4e00\u5207\u8cc7\u6e90\uff0c\u53eb\u4eba\u5f97\u76ca\u3002\u4ed6\u5011\u6839\u64da\u7684\u7d93\u6587\u662f\uff1a\u300c\u770b\u54ea\uff0c\u6211\u628a\u5168\u5730\u4e00\u5207\u542b\u7a2e\u5b50\u7684\u4e94\u7a40\u83dc\u852c\u548c\u4e00\u5207\u6703\u7d50\u679c\u5b50\u3001\u679c\u5b50\u88cf\u6709\u7a2e\u5b50\u7684\u6a39\uff0c\u90fd\u8cdc\u7d66\u4f60\u5011\uff1b\u9019\u4e9b\u90fd\u53ef\u4f5c\u98df\u7269\u3002\u300d\uff08\u5275\u4e0029\uff09\u9019\u6a23\u7684\u89e3\u91cb\u662f\u57fa\u65bc\u4e00\u7a2e\u4ee5\u4eba\u985e\u70ba\u4e2d\u5fc3\u7684\u5275\u9020\u89c0\uff0c\u80cc\u5f8c\u7684\u610f\u601d\u662f\uff1a\u795e\u5275\u9020\u4eba\u985e\u4e4b\u5f8c\uff0c\u4fbf\u5c07\u4e16\u754c\u4ea4\u7d66\u4ed6\u5011\uff0c\u81ea\u5df1\u5c31\u4f11\u606f\u4e86\u3002\u4eba\u8ca0\u8cac\u7ba1\u7406\u5927\u5730\uff0c\u9019\u597d\u50cf\u610f\u5473\u8457\u53d7\u9020\u754c\u5176\u9918\u90e8\u5206\u7684\u91cd\u8981\u6027\u6b21\u65bc\u4eba\u985e\uff0c\u90fd\u662f\u70ba\u4eba\u7684\u76ca\u8655\u800c\u5b58\u5728\uff0c\u53ef\u4ee5\u4efb\u4eba\u7ba1\u6cbb\u3001\u6d88\u8cbb\u3001\u4f7f\u7528\u3002 \u97cb\u7279\uff08Lynn White\uff09\u6307\u51fa\uff0c\u5c0d\u300c\u7ba1\u6cbb\u300d\u7684\u9019\u7a2e\u7406\u89e3\u662f\u57fa\u65bc\u4ee5\u4eba\u70ba\u4e2d\u5fc3\uff08anthropocentric\uff09\u7684\u5b97\u6559\u89c0\uff1b\u9019\u53ea\u6703\u9f13\u5439\u4e00\u7a2e\u525d\u524a\u7684\u95dc\u4fc2\uff0c\u4e26\u4e14\u4f7f\u5b97\u6559\u6210\u70ba\u8650\u7528\u5176\u4ed6\u53d7\u9020\u7269\u7684\u5de5\u5177\uff0c\u7d50\u679c\u5c0e\u81f4\u7576\u4ee3\u7684\u751f\u614b\u5371\u6a5f\u3002\u9019\u7a2e\u4ee5\u4eba\u70ba\u4e2d\u5fc3\u7684\u57fa\u7763\u6559\uff0c\u4e0d\u50c5\u5efa\u7acb\u4e86\u4e00\u7a2e\u628a\u300c\u4eba\u300d\u548c\u300c\u5927\u81ea\u7136\u300d\u4e8c\u5206\u7684\u4e8c\u5143\u8ad6\uff0c\u800c\u4e14\u5984\u7a31\u795e\u7684\u5fc3\u610f\u662f\u53eb\u4eba\u525d\u524a\u5927\u81ea\u7136\uff0c\u4ee5\u9054\u6210\u4eba\u985e\u5229\u5df1\u7684\u76ee\u7684\u30021 \u97cb\u7279\u7684\u7d50\u8ad6\u662f\uff1a\u57fa\u7763\u6559\u662f\u751f\u614b\u5371\u6a5f\u7684\u7f6a\u9b41\u798d\u9996\u3002\u4ed6\u547c\u7c72\u57fa\u7763\u6559\u6094\u6539\uff0c\u4e26\u8981\u7aed\u529b\u5efa\u69cb\u4e00\u500b\u5177\u6709\u751f\u614b\u610f\u7fa9\u7684\u57fa\u7763\u5f92\u50f9\u503c\u89c0\u30022 \u8056\u7d93\u7684\u7ba1\u6cbb\u89c0 \u97cb\u7279\u7684\u6279\u8a55\u56fa\u7136\u503c\u5f97\u6df1\u601d\u3002\u7136\u800c\uff0c\u8056\u7d93\u63d0\u51fa\u7684\u7ba1\u6cbb\u4e26\u4e0d\u662f\u5c08\u6a6b\u5730\u99d5\u99ad\u3002\u9996\u5148\uff0c\u6211\u5011\u5fc5\u9808\u6307\u51fa\uff1a\u8056\u7d93\u5f37\u8abf\u4eba\u985e\u5168\u7136\u4f9d\u8cf4\u5275\u9020\u4e3b\u3002\u5f9e\u5275\u4e16\u8a18\u7684\u5275\u9020\u654d\u4e8b\u53ef\u898b\uff0c\u5927\u5730\u7684\u4e00\u5207\u90fd\u662f\u5c6c\u65bc\u5275\u9020\u4e3b\uff0c\u4e26\u4e14\u53d7\u9020\u754c\u7684\u6bcf\u4e00\u90e8\u5206\u90fd\u662f\u91cd\u8981\u7684\uff0c\u5404\u6709\u81ea\u8eab\u7684\u50f9\u503c\uff0c\u90fd\u662f\u795e\u6240\u8b9a\u8cde\u7684\u3002\u53d7\u9020\u754c\u662f\u4e00\u500b\u5f7c\u6b64\u9023\u63a5\u3001\u4e92\u76f8\u4f9d\u8cf4\u7684\u6574\u9ad4\uff0c\u800c\u4eba\u985e\u53ea\u662f\u5275\u9020\u7cfb\u7d71\u7684\u4e00\u90e8\u5206\u3002\u82e5\u53d7\u9020\u4e16\u754c\u7684\u67d0\u4e9b\u90e8\u5206\u53d7\u640d\uff0c\u4eba\u985e\u751f\u6d3b\u4e5f\u6703\u53d7\u5f71\u97ff\u3002\u5176\u6b21\uff0c\u820a\u7d04\u8056\u7d93\u88cf\uff0c\u795e\u7684\u7ba1\u6cbb\u5305\u542b\u95dc"}