{"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":"\u81ea\u6211\u6aa2\u6e2c - \u61f7\u300c\u6ce1\u814e\u300d\u5e0c\u671b","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"ITQ3LAqrKf\"><a href=\"https:\/\/www.healthyd.com\/adpkd\/%e8%87%aa%e6%88%91%e6%aa%a2%e6%b8%ac\/\">\u81ea\u6211\u6aa2\u6e2c<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.healthyd.com\/adpkd\/%e8%87%aa%e6%88%91%e6%aa%a2%e6%b8%ac\/embed\/#?secret=ITQ3LAqrKf\" width=\"600\" height=\"338\" title=\"&#8220;\u81ea\u6211\u6aa2\u6e2c&#8221; &#8212; \u61f7\u300c\u6ce1\u814e\u300d\u5e0c\u671b\" data-secret=\"ITQ3LAqrKf\" 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":"\u81ea\u6211\u6aa2\u6e2c \u591a\u56ca\u6027\u814e\u81df\u75c5(ADPKD)\u5fb5\u72c0 &#8211; \u4f60\u4e2d\u4e86\u5e7e\u591a\u9805\uff1f \u5065\u5eb7\u7684\u814e\u81df\u53ef\u4ee5\u6392\u8d70\u8eab\u9ad4\u5167\u7d93\u65b0\u9673\u4ee3\u8b1d\u7522\u751f\u7684\u5ee2\u7269\uff0c\u540c\u6642\u53ef\u4ee5\u5354\u8abf\u9ad4\u5167\u6c34\u5206\u3001\u96fb\u89e3\u8cea\u3001\u9178\u9e7c\u5ea6\u3001\u8840\u58d3\u7b491\uff0c\u5c0d\u7dad\u6301\u9ad4\u5167\u7269\u8cea\u7684\u5e73\u8861\u5341\u5206\u91cd\u8981\u3002\u82e5\u7136\u60a3\u4e0a\u5e38\u67d3\u8272\u9ad4\u986f\u6027\u591a\u56ca\u6027\u814e\u81df\u75c5\uff08ADPKD\uff09\uff0c\u6216\u6703\u4ee4\u814e\u529f\u80fd\u9010\u6b65\u4e0b\u964d\uff0c\u56b4\u91cd\u751a\u81f3\u4e4e\u6709\u6a5f\u6703\u767c\u5c55\u6210\u814e\u81df\u8870\u7aed\u3002\u56e0\u6b64\u5118\u65e9\u5bdf\u89ba\u60a3\u75c5\u7684\u98a8\u96aa\u548c\u6c42\u91ab\uff0c\u6709\u52a9\u53ca\u65e9\u63a7\u5236\u75c5\u60c5\u4ee5\u5ef6\u7de9\u814e\u529f\u80fd\u8870\u9000\u3002 \u6b64\u591a\u56ca\u6027\u814e\u81df\u75c5\uff08ADPKD\uff09\u5fb5\u72c0\u8a55\u4f30\u8868\u80fd\u5e6b\u52a9\u60a8\u8a55\u4f30\u60a3\u4e0a\u814e\u75c5\u7684\u6f5b\u5728\u98a8\u96aa\uff0c\u4e0d\u662f\u7528\u65bc\u8a3a\u65b7\u6216\u53d6\u4ee3\u91ab\u7642\u5efa\u8b70\uff0c\u4f46\u53ef\u4ee5\u4f5c\u70ba\u60a8\u8207\u91ab\u751f\u8a0e\u8ad6\u7684\u4f9d\u64da\u3002\u4f60\u53ef\u8a66\u8a66\u6839\u64da\u65e5\u5e38\u751f\u6d3b\u53ca\u7d93\u9a57\u56de\u7b54\u4ee5\u4e0b\u554f\u984c\uff0c\u81ea\u6211\u6aa2\u6e2c\u662f\u5426\u6709\u6f5b\u5728\u98a8\u96aa\u60a3\u4e0a\u591a\u56ca\u6027\u814e\u81df\u75c5\uff08ADPKD\uff09\u3002 \u7acb\u5373\u6e2c\u8a66 \u5206\u4eab \u53c3\u8003\u8cc7\u6599\uff1a \u9999\u6e2f\u4e2d\u6587\u5927\u5b78\u4f55\u5584\u8861\u6ccc\u5c3f\u4e2d\u5fc3\u300a\u6162\u6027\u814e\u8870\u7aed\u300b &nbsp;"}