{"version":"1.0","provider_name":"Imperial Clinic-Sydney","provider_url":"https:\/\/imperialclinic.com.au\/zh-hant\/","author_name":"info@imperialmedicine.com.au","author_url":"https:\/\/imperialclinic.com.au\/zh-hant\/author\/infoimperialmedicine-com-au\/","title":"\u54a8\u8a62\u53ca\u8a3a\u65b7 - Imperial Clinic-Sydney","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"XcrXueVGt3\"><a href=\"https:\/\/imperialclinic.com.au\/zh-hant\/our-services\/%e5%92%a8%e8%a9%a2%e5%8f%8a%e8%a8%ba%e6%96%b7\/\">\u54a8\u8a62\u53ca\u8a3a\u65b7<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/imperialclinic.com.au\/zh-hant\/our-services\/%e5%92%a8%e8%a9%a2%e5%8f%8a%e8%a8%ba%e6%96%b7\/embed\/#?secret=XcrXueVGt3\" width=\"600\" height=\"338\" title=\"&#8220;\u54a8\u8a62\u53ca\u8a3a\u65b7&#8221; &#8212; Imperial Clinic-Sydney\" data-secret=\"XcrXueVGt3\" 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:\/\/imperialclinic.com.au\/wp-includes\/js\/wp-embed.js\n<\/script>\n","description":"\u5982\u679c\u9019\u662f\u60a8\u7b2c\u4e00\u6b21\u4f86\u6211\u5011\u7684\u8a3a\u6240\uff0c\u521d\u59cb\u54a8\u8a62\u662f\u5fc5\u8981\u7684\u3002\u85c9\u7531\u521d\u59cb\u8aee\u8a62\u627e\u51fa\u60a8\u8eab\u9ad4\u7684\u5065\u5eb7\u72c0\u614b\u3002\u6700\u521d\u7684\u54a8\u8a62\u5305\u542b\u7d0460\u5206\u9418\u7684\u54a8\u8a62\u53ca\u8a3a\u65b7\uff0c\u4e4b\u5f8c\u56de\u8a3a\u6bcf\u6b21\u7d0430\u5206\u9418\u3002 \u672c\u8a3a\u6240\u4ee5\u9670\u967d\u4e94\u884c\u4f5c\u70ba\u7406\u8ad6\u57fa\u790e\uff0c\u5c07\u4eba\u9ad4\u770b\u6210\u662f\u6c23\u3001\u5f62\u3001\u795e\u7684\u7d71\u4e00\u9ad4\uff0c\u901a\u904e\u671b\u3001\u805e\u3001\u554f\u3001\u5207\uff0c\u56db\u8a3a\u5408\u53c3\u7684\u65b9\u6cd5\uff0c\u63a2\u6c42\u75c5\u56e0\u3001\u75c5\u6027\u3001\u75c5\u4f4d\u3001\u5206\u6790\u75c5\u6a5f\u53ca\u4eba\u9ad4\u5167\u4e94\u81df\u516d\u8151\u3001 \u7d93\u7d61\u95dc\u7bc0\u3001\u6c23\u8840\u6d25\u6db2\u7684\u8b8a\u5316\u3001\u5224\u65b7\u90aa\u6b63\u6d88\u9577\uff0c\u9032\u800c\u5f97\u51fa\u75c5\u540d\uff0c\u6b78\u7d0d\u51fa\u8b49\u578b\uff0c\u4ee5\u8fa8\u8b49\u8ad6\u6cbb\u539f\u5247\uff0c\u5236\u5b9a\u201c\u6c57\u3001\u5410\u3001\u4e0b\u3001\u548c\u3001\u6eab\u3001\u6e05\u3001\u88dc\u3001\u6d88\u201d\u7b49\u6cbb\u6cd5\uff0c\u4f7f\u7528\u4e2d\u85e5\u3001\u91dd\u7078\u3001 \u8dcc\u6253\u3001\u63a8\u62ff\u3001\u6309\u6469\u3001\u62d4\u7f50\u3001\u6c23\u529f\u3001\u98df\u7642\u7b49\u591a\u7a2e\u6cbb\u7642\u624b\u6bb5\uff0c\u4f7f\u4eba\u9ad4\u9054\u5230\u9670\u967d\u8abf\u548c\u800c\u5eb7\u5fa9\u3002\u6cbb\u7642\u7684\u7a4d\u6975\u9762\u5728\u65bc\u5e0c\u671b\u53ef\u4ee5\u5354\u52a9\u6062\u5fa9\u4eba\u9ad4\u7684\u9670\u967d\u5e73\u8861\uff0c\u800c\u6d88\u6975\u9762\u5247\u662f\u5e0c\u671b \u7576\u5fc5\u9808\u4f7f\u7528\u85e5\u7269\u4f86\u6e1b\u7de9\u75be\u75c5\u7684\u60e1\u5316\u6642\uff0c\u9084\u80fd\u517c\u9867\u751f\u547d\u8207\u751f\u6d3b\u7684\u54c1\u8cea\u3002"}