{"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":"\u5716\u66f8\u9928 - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"ZkJW1Lpe7D\"><a href=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/libfacilities\/\">\u56fe\u4e66\u9986<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/libfacilities\/embed\/#?secret=ZkJW1Lpe7D\" width=\"600\" height=\"338\" title=\"\u300a \u56fe\u4e66\u9986\u300b\u2014\u9999\u6e2f\u6d78\u4fe1\u4f1a\u795e\u5b66\u9662\" data-secret=\"ZkJW1Lpe7D\" 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 \u5716\u66f8\u9928 \u672c\u9662\u5716\u66f8\u9928\u5ea7\u843d\u65bc\u884c\u653f\u53ca\u6559\u5b78\u5927\u6a13\u4e8c\u6a13\uff0c\u9762\u7a4d\u7d04\u4e03\u767e\u4e94\u5341\u5e73\u65b9\u7c73\uff0c\u70ba\u8b80\u8005\u63d0\u4f9b\u7d04\u56db\u5341\u500b\u8212\u9069\u7684\u95b1\u8b80\u5ea7\u4f4d\u3002\u9928\u5167\u8a2d\u6709\u4e00\u9593\u5c0e\u4fee\u5ba4\uff0c\u4f9b\u5c0f\u7d44\u7814\u7fd2\u4f7f\u7528\u3002\u672c\u9928\u6240\u63d0\u4f9b\u7684\u8a2d\u5099\u9084\u5305\u62ec\uff1a\u591a\u53f0\u96fb\u8166\u3001\u5f69\u8272\u5f71\u5370\u6a5f\u3001\u5217\u5370\u6a5f\u3001\u6383\u7784\u5668\u3001\u7121\u7dda\u7db2\u7d61\u7cfb\u7d71\u3001\u5404\u5f0f\u5f71\u97f3\u5668\u6750\u7b49\u3002\u672c\u9928\u64c1\u6709\u76f8\u7576\u8c50\u5bcc\u7684\u5b78\u7fd2\u8cc7\u6e90\uff0c\u5305\u62ec\u4e2d\u3001\u82f1\u6587\u85cf\u66f8\u3001\u671f\u520a\u3001\u96fb\u5b50\u66f8\u3001\u96fb\u5b50\u671f\u520a\u3001\u5f71\u97f3\u8cc7\u6599\u53ca\u5149\u789f\u8cc7\u6599\u5eab\u7b49\uff0c\u5167\u5bb9\u8986\u84cb\u4e86\u795e\u5b78\u53ca\u8056\u7d93\u7814\u7a76\u7684\u5404\u500b\u7bc4\u7587\uff0c\u5176\u4ed6\u5b78\u79d1\u5982\u8f14\u5c0e\u5b78\u3001\u5fc3\u7406\u5b78\u3001\u6559\u80b2\u5b78\u7b49\u4ea6\u6709\u53ef\u89c0\u7684\u6536\u85cf\u91cf\u3002\u672c\u9928\u9084\u8a2d\u6709\u5169\u500b\u7279\u85cf\uff0c\u5206\u5225\u70ba\u4e3b\u65e5\u5b78\u6559\u6750\u53ca\u6eff\u8f09\u6b77\u53f2\u898b\u8b49\u7684\u9999\u6e2f\u6d78\u4fe1\u6703\u6a94\u6848\u5ba4\u3002 \u5982\u6b32\u8a73\u7d30\u4e86\u89e3\u672c\u9662\u5716\u66f8\u9928\uff0c\u8acb\u9ede\u64ca\u9019\u88e1","thumbnail_url":"https:\/\/www4.hkbts.edu.hk\/wp-content\/uploads\/2022\/09\/Library-1024x576.jpg"}