{"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_ga","author_url":"https:\/\/www.hkbts.edu.hk\/zh_cn\/?p=author\/wordpress_ga\/","title":"\u5ee2\u7269\u56de\u6536\u8a08\u5283 - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"ZRgMDP7Gbw\"><a href=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/recycle\/\">\u5e9f\u7269\u56de\u6536\u8ba1\u5212<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/recycle\/embed\/#?secret=ZRgMDP7Gbw\" width=\"600\" height=\"338\" title=\"\u300a \u5e9f\u7269\u56de\u6536\u8ba1\u5212\u300b\u2014\u9999\u6e2f\u6d78\u4fe1\u4f1a\u795e\u5b66\u9662\" data-secret=\"ZRgMDP7Gbw\" 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 \u5ee2\u7269\u56de\u6536\u8a08\u5283 \u8003\u616e\u5230\u5b78\u9662\u98ef\u5802\u548c\u5bbf\u820d\u6bcf\u5929\u5747\u7522\u751f\u5927\u91cf\u7684\u5eda\u9918\uff0c\u5b78\u9662\u98ef\u5802\u9042\u65bc2019\u5e74\u8207\u4e00\u9593\u5eda\u9918\u56de\u6536\u5546\u9054\u6210\u5354\u8b70\uff0c\u5b9a\u671f\u5230\u5b78\u9662\u6536\u96c6\u5eda\u9918\u3002 \u5728\u65b0\u578b\u51a0\u72c0\u75c5\u6bd2\u7206\u767c\u5f8c\uff0c\u5b78\u9662\u53ca\u5176\u9130\u8fd1\u98df\u8086\u7684\u5eda\u9918\u91cf\u5747\u5927\u6e1b\u3002\u9762\u5c0d\u6709\u9650\u7684\u5229\u6f64\uff0c\u5eda\u9918\u56de\u6536\u5546\u6c7a\u5b9a\u4e0d\u518d\u5230\u5b78\u9662\u6536\u96c6\u5eda\u9918\u3002\u7136\u800c\uff0c\u6b64\u8209\u537b\u6210\u70ba\u5b78\u9662\u5ee2\u7269\u56de\u6536\u8a08\u5283\u7684\u8f49\u6369\u9ede\u3002 2020\u5e747\u6708\uff0c\u5b78\u9662\u81ea\u884c\u8cfc\u8cb7\u5eda\u9918\u8655\u7406\u5668\uff0c\u5c07\u5eda\u9918\u8f49\u5316\u6210\u6709\u6a5f\u80a5\u6599\uff0c\u7528\u4f5c\u704c\u6e89\u6821\u5712\u5167\u7684\u690d\u7269\u3002\u5b78\u9662\u6559\u8077\u54e1\u548c\u5b78\u751f\u66f4\u8eab\u9ad4\u529b\u884c\uff0c\u5728\u7528\u9910\u5f8c\u6309\u6307\u793a\u81ea\u884c\u5c07\u53ef\u5206\u89e3\u548c\u4e0d\u53ef\u5206\u89e3\u7684\u5eda\u9918\u653e\u5728\u4e0d\u540c\u7684\u6536\u96c6\u7bb1\u5167\u3002 \u540c\u5e7412\u6708\uff0c\u5b78\u9662\u8207\u5321\u667a\u6703\u71df\u904b\u7684\u201c\u7da0\u5728\u5927\u57d4\u201d\u5408\u4f5c\uff0c\u63a8\u51fa\u201c\u897f\u6fb3\u6821\u5712\u74b0\u4fdd\u56de\u6536\u8a08\u5283\u201d\uff0c\u4e26\u5728\u5df2\u5a5a\u5bbf\u820d\u5730\u4e0b\u8a2d\u7acb\u7279\u5b9a\u7684\u56de\u6536\u7bb1\u53ca\u6536\u96c6\u5c0f\u5bb6\u96fb\u548c\u6173\u96fb\u81bd\u7684\u56de\u6536\u67b6\u3002\u884c\u653f\u90e8\u7684\u540c\u5de5\u66f4\u88fd\u4f5c\u4e86\u300a\u897f\u6fb3\u6821\u5712\u74b0\u4fdd\u5c0f\u518a\u5b50\u300b\uff0c\u5411\u9662\u5167\u5e2b\u751f\u548c\u8077\u54e1\u8b1b\u89e3\u6821\u5712\u5167\u7684\u74b0\u4fdd\u8a2d\u65bd\u548c\u5ee2\u7269\u56de\u6536\u7684\u7a0b\u5e8f\u3002\u6b64\u5916\uff0c\u540c\u5de5\u66f4\u5b9a\u671f\u767c\u653e\u300a\u6821\u5712\u74b0\u4fdd\u56de\u6536\u8a08\u5283\u5831\u544a\u300b\uff0c\u8b93\u5168\u9662\u5e2b\u751f\u4e86\u89e3\u8a08\u5283\u7684\u6700\u65b0\u60c5\u6cc1\u3002 \u76ee\u524d\uff0c\u9662\u5167\u5171\u6536\u96c610\u985e\u56de\u6536\u7269\u54c1\uff0c\u800c\u57282023\u5e74\uff0c\u56de\u6536\u91cf\u66f4\u9ad8\u90545,155.9\u5343\u514b\u3002\u5ee2\u7d19\u7684\u56de\u6536\u91cf\u5c6c\u56de\u6536\u7269\u54c1\u4e4b\u51a0\uff0c\u9054\u52303,640.5 \u5343\u514b\uff0c\u5176\u6b21\u662f\u5851\u81a0\uff08529.7\u5343\u514b\uff09\u548c\u5c0f\u5bb6\u96fb\uff08348.3\u5343\u514b\uff09\u3002\u5b78\u9662\u7684\u5eda\u9918\u6a5f\u65bc2023\u5e74\u5ea6\u5408\u5171\u88fd\u9020\u4e8697\u5343\u514b\u7684\u5806\u80a5\uff0c\u4e3b\u8981\u7528\u4f5c\u897f\u6fb3\u6821\u5712\u82b1\u8349\u6a39\u6728\u7684\u80a5\u6599\u3002"}