{"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_admin","author_url":"https:\/\/www.hkbts.edu.hk\/zh_cn\/?p=author\/wordpress_admin\/","title":"\u652f\u6301\u6d78\u795e - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"lqHAqp6OC5\"><a href=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/donation\/\">\u652f\u6301\u6d78\u795e<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/donation\/embed\/#?secret=lqHAqp6OC5\" width=\"600\" height=\"338\" title=\"\u300a \u652f\u6301\u6d78\u795e\u300b\u2014\u9999\u6e2f\u6d78\u4fe1\u4f1a\u795e\u5b66\u9662\" data-secret=\"lqHAqp6OC5\" 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 \u652f\u6301\u6d78\u795e \u672c\u9662\u4e8b\u5de5 \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662\u65bc1951\u5e74\u5275\u6821\uff0c\u4ee5\u6d78\u4fe1\u6703\u4fe1\u4ef0\u50b3\u7d71\u70ba\u5efa\u6821\u6839\u57fa\u3002\u672c\u9662\u7684\u76ee\u6a19\uff0c\u662f\u57f9\u80b2\u4e00\u7fa4\u5728\u9748\u547d\u4e0a\u6709\u66f4\u65b0\u80fd\u529b\u3001\u5728\u4e8b\u5949\u4e0a\u6709\u5be6\u8e10\u80fd\u529b\u3001\u80fd\u5920\u670d\u4f8d\u6559\u6703\u3001\u9762\u5411\u793e\u6703\u3001\u8fce\u5c0d\u4e16\u754c\u7684\u50d5\u4eba\u9818\u8896\u3002 \u672c\u9662\u73fe\u6642\u9664\u8a2d\u6709\u6821\u672c\u90e8\u50b3\u9053\u88dd\u5099\u8ab2\u7a0b\u53ca\u7814\u7a76\u9662\u8ab2\u7a0b\u5916\uff0c\u9084\u958b\u8a2d\u4fe1\u5f92\u795e\u5b78\u6559\u80b2\u8ab2\u7a0b\u3001\u9059\u8ddd\u6559\u80b2\u8ab2\u7a0b\u3001\u6559\u7267\u6301\u7e8c\u6559\u80b2\u8ab2\u7a0b\u53ca\u5d07\u62dc\u8207\u97f3\u6a02\u85dd\u8853\u7b49\u8ab2\u7a0b\u3002 \u5c55\u671b\u672a\u4f86\uff0c\u672c\u9662\u5c07\u7e7c\u7e8c\u5728\u795e\u5b78\u6559\u80b2\u4e8b\u5de5\u4e0a\u5fe0\u65bc\u4e3b\u7684\u8a17\u4ed8\uff0c\u4e5f\u76fc\u671b\u7e7c\u7e8c\u8207\u773e\u6559\u6703\u76f8\u9023\u76f8\u7e6b\uff0c\u4e00\u540c\u7d93\u6b77\u795e\u6240\u8cdc\u7684\u4fe1\u671b\u611b\u3002 \u6350\u6b3e\u65b9\u6cd5 \u60a8\u53ef\u4ee5\u9078\u64c7\u4ee5\u4e0b\u5404\u7a2e\u65b9\u5f0f\u6350\u737b\u7d66\u672c\u9662\u3002 \u7d93\u300c\u4e2d\u9280\u9999\u6e2f\u6350\u6b3e\u6613\u7db2\u4e0a\u5e73\u53f0\u300d\u6350\u737b\uff1a\u8f49\u6578\u5feb FPS\u4fe1\u7528\u5361 (Visa\/Master Card\/ JCB\/ UnionPay)\u5fae\u4fe1\u652f\u4ed8\/\u652f\u4ed8\u5bf6 (WeChatPay\/ AliPay\/ BoC Pay) \u5176\u4ed6\u6350\u737b\u65b9\u5f0f\uff1a\u5283\u7dda\u652f\u7968\u76f4\u63a5\u5b58\u6b3e\u6216\u9280\u884c\u8f49\u5e33 \/\u8f49\u6578\u5feb(FPS ID)\uff1a166 215 137\u6bcf\u6708\u5b9a\u984d\u4ee5\u4fe1\u7528\u5361\u6350\u737b\u6bcf\u6708\u5b9a\u984d\u7d93\u9280\u884c\u5e33\u6236\u6350\u737b\u6d77\u5916\u6350\u737b\uff1a\u652f\u7968\/\u532f\u7968\/\u6d77\u5916\u8f49\u5e33\/\u96fb\u532f(T\/T) \u5982\u6709\u7279\u5225\u6350\u737b\u5b89\u6392\uff0c\u8acb\u81f4\u96fb\u9662\u9577\u8fa6\u516c\u5ba4(852) 2768-5125\u3002 \u672c\u9662\u5c07\u6703\u767c\u51fa\u6b63\u5f0f\u6536\u64da\uff0c\u6350\u6b3e\u4e00\u767e\u5143\u6216\u4ee5\u4e0a\u53ef\u6191\u6536\u64da\u5728\u672c\u6e2f\u7533\u8acb\u6263\u7a05\u3002 \u8877\u5fc3\u591a\u8b1d\u60a8\u7684\u652f\u6301\uff01"}