{"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":"\u884c\u653f\u548c\u6559\u5b78\u5927\u6a13 - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"GsxvRGGexQ\"><a href=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/adminblock\/\">\u884c\u653f\u548c\u6559\u5b66\u5927\u697c<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/adminblock\/embed\/#?secret=GsxvRGGexQ\" width=\"600\" height=\"338\" title=\"\u300a \u884c\u653f\u548c\u6559\u5b66\u5927\u697c\u300b\u2014\u9999\u6e2f\u6d78\u4fe1\u4f1a\u795e\u5b66\u9662\" data-secret=\"GsxvRGGexQ\" 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\u751f\u6d3b \u8fd4\u56de\u4e3b\u9801 \u884c\u653f\u548c\u6559\u5b78\u5927\u6a13 \u884c\u653f\u53ca\u6559\u5b78\u5927\u6a13\u6a13\u9ad8\u56db\u5c64\u3002\u5730\u4e0b\u662f\u884c\u653f\u8fa6\u516c\u5ba4\u53ca\u591a\u7528\u9014\u79ae\u5802\uff08\u7d04\u7ff0\u99ac\u5229\u7d00\u5ff5\u5802\uff09\uff0c\u53ef\u5bb9\u7d0d\u4e00\u767e\u56db\u5341\u500b\u5ea7\u4f4d\uff0c\u8a2d\u6709\u92fc\u7434\u53ca\u5b8c\u5584\u5f71\u97f3\u8a2d\u5099\uff0c\u53ef\u4f5c\u5a5a\u79ae\u3001\u7814\u8a0e\u6703\u53ca\u6388\u8ab2\u7b49\u591a\u7a2e\u7528\u9014\u3002\u53e6\u6709\u6703\u8b70\u5ba4\u53ca\u591a\u7528\u9014\u5ba4\uff0c\u53ef\u4f9b\u6703\u8b70\u53ca\u8ab2\u5802\u4f7f\u7528\u3002 \u4e00\u4e8c\u6a13\u70ba\u4e2d\u3001\u5c0f\u578b\u8ab2\u5ba4\u5171\u4e03\u9593\uff0c\u5747\u88dd\u8a2d\u6db2\u6676\u9ad4\u6295\u5c04\u6a5f\u3001\u9304\u5f71\u6a5f\u53ca\u6d3b\u52d5\u5e03\u5e55\u3002\u4e2d\u578b\u8ab2\u5ba4\u53ef\u5bb9\u7d0d\u4e09\u5341\u4eba\uff0c\u5c0f\u578b\u8ab2\u5ba4\u5341\u4e94\u4eba\u3002\u4f4d\u65bc\u4e8c\u6a13\u7684\u6f14\u8b1b\u5ef3\uff0c\u53ef\u5bb9\u7d0d\u4e00\u767e\u4e8c\u5341\u4eba\u805a\u6703\uff0c\u8a2d\u6709\u92fc\u7434\u548c\u5b8c\u5584\u7684\u5f71\u97f3\u8a2d\u5099\uff0c\u4e26\u53ef\u4f5c\u8d8a\u6d0b\u8996\u50cf\u6f14\u8b1b\u6216\u6703\u8b70\u4e4b\u7528\u3002\u540c\u6a23\u4f4d\u65bc\u4e8c\u6a13\u7684\u96fb\u8166\u5b78\u7fd2\u5ba4\uff0c\u8a2d\u6709\u5341\u4e8c\u53f0\u96fb\u8166\u4f9b\u5b78\u54e1\u4e0a\u7db2\u5c0b\u627e\u8cc7\u6599\u3002 \u4e09\u6a13\u70ba\u9662\u9577\u8fa6\u516c\u5ba4\u3001\u6559\u52d9\u9577\u8fa6\u516c\u5ba4\u3001\u6559\u6388\u8fa6\u516c\u5ba4\u548c\u6703\u8b70\u5ba4\u3002\u65b0\u7ffc\u4e09\u6a13\u8a2d\u6709\u53ef\u5bb9\u7d0d\u56db\u5341\u4e94\u4eba\u4e4b\u5927\u578b\u8ab2\u5ba4\u4e00\u9593\uff0c\u4ee5\u53ca\u53ef\u5bb9\u7d0d\u4e09\u5341\u4eba\u4e4b\u4e2d\u578b\u8ab2\u5ba4\u5169\u9593\u3002\u56db\u6a13\u8a2d\u6709\u6559\u6388\u8fa6\u516c\u5ba4\u3001\u5169\u9593\u5167\u8a2d\u92fc\u7434\u4f9b\u6559\u5b78\u7528\u9014\u4e4b\u5c0f\u578b\u8ab2\u5ba4\u3001\u56db\u500b\u7df4\u7434\u5ba4\uff0c\u4ee5\u53ca\u8996\u807d\u6559\u6750\u88fd\u4f5c\u4e2d\u5fc3\u3002","thumbnail_url":"https:\/\/www4.hkbts.edu.hk\/wp-content\/uploads\/2022\/09\/Administration-and-Education-Block-1024x683.jpg"}