{"version":"1.0","provider_name":"Imperial Clinic-Sydney","provider_url":"https:\/\/imperialclinic.com.au\/zh-hans\/","author_name":"info@imperialmedicine.com.au","author_url":"https:\/\/imperialclinic.com.au\/zh-hans\/author\/infoimperialmedicine-com-au\/","title":"\u54a8\u8be2\u53ca\u8bca\u65ad - Imperial Clinic-Sydney","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"cSRruKKWsA\"><a href=\"https:\/\/imperialclinic.com.au\/zh-hans\/our-services\/%e5%92%a8%e8%af%a2%e5%8f%8a%e8%af%8a%e6%96%ad\/\">\u54a8\u8be2\u53ca\u8bca\u65ad<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/imperialclinic.com.au\/zh-hans\/our-services\/%e5%92%a8%e8%af%a2%e5%8f%8a%e8%af%8a%e6%96%ad\/embed\/#?secret=cSRruKKWsA\" width=\"600\" height=\"338\" title=\"&#8220;\u54a8\u8be2\u53ca\u8bca\u65ad&#8221; &#8212; Imperial Clinic-Sydney\" data-secret=\"cSRruKKWsA\" 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\u8fd9\u662f\u60a8\u7b2c\u4e00\u6b21\u6765\u6211\u4eec\u7684\u8bca\u6240\uff0c\u521d\u59cb\u54a8\u8be2\u662f\u5fc5\u8981\u7684\u3002\u85c9\u7531\u521d\u59cb\u54a8\u8be2\u627e\u51fa\u60a8\u8eab\u4f53\u7684\u5065\u5eb7\u72b6\u6001\u3002\u6700\u521d\u7684\u54a8\u8be2\u5305\u542b\u7ea660\u5206\u949f\u7684\u54a8\u8be2\u53ca\u8bca\u65ad\uff0c\u4e4b\u540e\u56de\u8bca\u6bcf\u6b21\u7ea630\u5206\u949f\u3002 \u672c \u8bca\u6240\u4ee5\u9634\u9633\u4e94\u884c\u4f5c\u4e3a\u7406\u8bba\u57fa\u7840\uff0c\u5c06\u4eba\u4f53\u770b\u6210\u662f\u6c14\u3001\u5f62\u3001\u795e\u7684\u7edf\u4e00\u4f53\uff0c\u901a\u8fc7\u671b\u3001\u95fb\u3001\u95ee\u3001\u5207\uff0c\u56db\u8bca\u5408\u53c2\u7684\u65b9\u6cd5\uff0c\u63a2\u6c42\u75c5\u56e0\u3001\u75c5\u6027\u3001\u75c5\u4f4d\u3001\u5206\u6790\u75c5\u673a\u53ca\u4eba\u4f53\u5185\u4e94\u810f\u516d\u8151\u3001 \u7ecf\u7edc\u5173\u8282\u3001\u6c14\u8840\u6d25\u6db2\u7684\u53d8\u5316\u3001\u5224\u65ad\u90aa\u6b63\u6d88\u957f\uff0c\u8fdb\u800c\u5f97\u51fa\u75c5\u540d\uff0c\u5f52\u7eb3\u51fa\u8bc1\u578b\uff0c\u4ee5\u8fa8\u8bc1\u8bba\u6cbb\u539f\u5219\uff0c\u5236\u5b9a\u201c\u6c57\u3001\u5410\u3001\u4e0b\u3001\u548c\u3001\u6e29\u3001\u6e05\u3001\u8865\u3001\u6d88\u201d\u7b49\u6cbb\u6cd5\uff0c\u4f7f\u7528\u4e2d\u836f\u3001\u9488\u7078\u3001 \u8dcc\u6253\u3001\u63a8\u62ff\u3001\u6309\u6469\u3001\u62d4\u7f50\u3001\u6c14\u529f\u3001\u98df\u7597\u7b49\u591a\u79cd\u6cbb\u7597\u624b\u6bb5\uff0c\u4f7f\u4eba\u4f53\u8fbe\u5230\u9634\u9633\u8c03\u548c\u800c\u5eb7\u590d\u3002\u6cbb\u7597\u7684\u79ef\u6781\u9762\u5728\u4e8e\u5e0c\u671b\u53ef\u4ee5\u534f\u52a9\u6062\u590d\u4eba\u4f53\u7684\u9634\u9633\u5e73\u8861\uff0c\u800c\u6d88\u6781\u9762\u5219\u662f\u5e0c\u671b \u5f53\u5fc5\u987b\u4f7f\u7528\u836f\u7269\u6765\u51cf\u7f13\u75be\u75c5\u7684\u6076\u5316\u65f6\uff0c\u8fd8\u80fd\u517c\u987e\u751f\u547d\u4e0e\u751f\u6d3b\u7684\u8d28\u91cf\u3002"}