{"version":"1.0","provider_name":"\u61f7\u300c\u6ce1\u814e\u300d\u5e0c\u671b","provider_url":"https:\/\/www.healthyd.com\/adpkd","author_name":"esddesign","author_url":"https:\/\/www.healthyd.com\/adpkd\/\u5c08\u984c\/author\/esddesign\/","title":"\u5065\u5eb7\u8cc7\u6e90\u4e2d\u5fc3 - \u61f7\u300c\u6ce1\u814e\u300d\u5e0c\u671b","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"ElIgTq2TLn\"><a href=\"https:\/\/www.healthyd.com\/adpkd\/%e5%81%a5%e5%ba%b7%e8%b3%87%e6%ba%90%e4%b8%ad%e5%bf%83\/\">\u5065\u5eb7\u8cc7\u6e90\u4e2d\u5fc3<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.healthyd.com\/adpkd\/%e5%81%a5%e5%ba%b7%e8%b3%87%e6%ba%90%e4%b8%ad%e5%bf%83\/embed\/#?secret=ElIgTq2TLn\" width=\"600\" height=\"338\" title=\"&#8220;\u5065\u5eb7\u8cc7\u6e90\u4e2d\u5fc3&#8221; &#8212; \u61f7\u300c\u6ce1\u814e\u300d\u5e0c\u671b\" data-secret=\"ElIgTq2TLn\" 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 * This file cannot have ampersands in it. This is to ensure\n * it can be embedded in older versions of WordPress.\n * See https:\/\/core.trac.wordpress.org\/changeset\/35708.\n *\/\n(function ( window, document ) {\n\t'use strict';\n\n\tvar supportedBrowser = false,\n\t\tloaded = false;\n\n\t\tif ( document.querySelector ) {\n\t\t\tif ( window.addEventListener ) {\n\t\t\t\tsupportedBrowser = true;\n\t\t\t}\n\t\t}\n\n\t\/** @namespace wp *\/\n\twindow.wp = window.wp || {};\n\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\tif ( ! data ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( ! ( data.secret || data.message || data.value ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( \/[^a-zA-Z0-9]\/.test( data.secret ) ) {\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\t\/* Resize the iframe on request. *\/\n\t\t\tif ( 'height' === data.message ) {\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}\n\n\t\t\t\/* Link to a specific URL on request. *\/\n\t\t\tif ( 'link' === data.message ) {\n\t\t\t\tsourceURL = document.createElement( 'a' );\n\t\t\t\ttargetURL = document.createElement( 'a' );\n\n\t\t\t\tsourceURL.href = source.getAttribute( 'src' );\n\t\t\t\ttargetURL.href = data.value;\n\n\t\t\t\t\/* Only follow link if the protocol is in the allow list. *\/\n\t\t\t\tif ( ! allowedProtocols.test( targetURL.protocol ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t\/* Only continue if link hostname matches iframe's hostname. *\/\n\t\t\t\tif ( targetURL.host === sourceURL.host ) {\n\t\t\t\t\tif ( document.activeElement === source ) {\n\t\t\t\t\t\twindow.top.location.href = data.value;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\tfunction onLoad() {\n\t\tif ( loaded ) {\n\t\t\treturn;\n\t\t}\n\n\t\tloaded = true;\n\n\t\tvar isIE10 = -1 !== navigator.appVersion.indexOf( 'MSIE 10' ),\n\t\t\tisIE11 = !!navigator.userAgent.match( \/Trident.*rv:11\\.\/ ),\n\t\t\tiframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),\n\t\t\tiframeClone, i, 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 ).substr( 2, 10 );\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\/* Remove security attribute from iframes in IE10 and IE11. *\/\n\t\t\tif ( ( isIE10 || isIE11 ) ) {\n\t\t\t\tiframeClone = source.cloneNode( true );\n\t\t\t\tiframeClone.removeAttribute( 'security' );\n\t\t\t\tsource.parentNode.replaceChild( iframeClone, source );\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\tif ( supportedBrowser ) {\n\t\twindow.addEventListener( 'message', window.wp.receiveEmbedMessage, false );\n\t\tdocument.addEventListener( 'DOMContentLoaded', onLoad, false );\n\t\twindow.addEventListener( 'load', onLoad, false );\n\t}\n})( window, document );\n<\/script>\n","description":"\u5065\u5eb7\u8cc7\u6e90\u4e2d\u5fc3 \u60a3\u6709\u5e38\u67d3\u8272\u9ad4\u986f\u6027\u591a\u56ca\u6027\u814e\u81df\u75c5\uff08ADPKD\uff09\u9700\u8981\u5404\u65b9\u4e92\u76f8\u652f\u63f4\uff0c\u76e1\u65e9\u5728\u65e9\u671f\u767c\u73fe\uff0c\u6709\u52a9\u65bc\u6e1b\u8f15ADPKD\u6240\u8a98\u767c\u7684\u554f\u984c\uff0c\u5305\u62ec\u7cd6\u5c3f\u75c5\u814e\u75c5\u8b8a\u3001\u7cd6\u5c3f\u75c5\u3001\u9ad8\u8840\u58d3\u7b49\u3002\u5f88\u591a\u75c5\u53cb\u4e00\u6642\u9593\u9700\u8981\u63a5\u53d7\u7121\u6cd5\u6539\u8b8a\u7684\u4e8b\u5be6\uff0c\u96e3\u514d\u5bb9\u6613\u4ee4\u4eba\u60c5\u7dd2\u6ce2\u52d5\uff0c\u9762\u81e8\u8457\u8271\u96e3\u7684\u8f49\u8b8a\uff0c\u6700\u91cd\u8981\u7684\u662f\u75c5\u53cb\u548c\u89aa\u5c6c\u90fd\u80fd\u5f97\u5230\u76f8\u95dc\u7684\u8cc7\u8a0a\u548c\u652f\u63f4\u3002 \u300c\u9999\u6e2f\u814e\u79d1\u5718\u968a\u300d\u5df2\u65bc\u4e8c\u96f6\u4e00\u516b\u5e74\u4e8c\u6708\u6210\u7acb\u300c\u591a\u56ca\u814e\u75c5\u652f\u63f4\u5718\u968a\u300d\uff0c\u6210\u70ba\u516c\u79c1\u4e92\u52d5\u5408\u4f5c\u7684\u5e73\u53f0\uff0c\u652f\u63f4\u5718\u968a\u4e2d\u7684\u91ab\u751f\u548c\u8b77\u58eb\u81f4\u529b\u63a8\u5ee3\u8207\u591a\u56ca\u814e\u75c5\u6709\u95dc\u7684\u6d3b\u52d5\uff0c\u5305\u62ec\uff1a\u5065\u5eb7\u8b1b\u5ea7\uff0c\u98f2\u98df\u63aa\u65bd\u548c\u591a\u56ca\u814e\u75c5\u60a3\u8005\u7684\u76e3\u5bdf\uff0c\u4ee5\u53ca\u591a\u56ca\u814e\u75c5\u60a3\u8005\u7684\u5206\u4eab\u6703\uff0c\u66f4\u8a2d\u7acb\u300c\u9999\u6e2f\u591a\u56ca\u814e\u75c5\u4e92\u52a9\u5c0f\u7d44\u300d\uff0c\u4e00\u540c\u63a2\u8a0e\u591a\u56ca\u814e\u75c5\u53cb\u6240\u9762\u5c0d\u7684\u554f\u984c\u3001\u5982\u4f55\u53bb\u6e1b\u5c11\u5fc3\u7406\u8ca0\u64d4\u53ca\u63d0\u4f9b\u5c08\u696d\u610f\u898b\u7b49\uff0c\u8b93\u591a\u56ca\u814e\u75c5\u540c\u8def\u4eba\u77e5\u9053\u81ea\u5df1\u4e26\u4e0d\u5b64\u55ae\u3002 HK Polycystic Kidneys disease Group \u9999\u6e2f\u591a\u56ca\u814e\u75c5\u4e92\u52a9\u5c0f\u7d44 https:\/\/www.facebook.com\/PCKDHK\/"}