{"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":"\u5e38\u898b\u554f\u984cFAQ - \u61f7\u300c\u6ce1\u814e\u300d\u5e0c\u671b","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"3FIkDoG1Ia\"><a href=\"https:\/\/www.healthyd.com\/adpkd\/%e5%b8%b8%e8%a6%8b%e5%95%8f%e9%a1%8c\/\">\u5e38\u898b\u554f\u984cFAQ<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.healthyd.com\/adpkd\/%e5%b8%b8%e8%a6%8b%e5%95%8f%e9%a1%8c\/embed\/#?secret=3FIkDoG1Ia\" width=\"600\" height=\"338\" title=\"&#8220;\u5e38\u898b\u554f\u984cFAQ&#8221; &#8212; \u61f7\u300c\u6ce1\u814e\u300d\u5e0c\u671b\" data-secret=\"3FIkDoG1Ia\" 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":"\u5e38\u898b\u554f\u984cFAQ \u4ec0\u9ebc\u662f\u5e38\u67d3\u8272\u9ad4\u986f\u6027\u591a\u56ca\u6027\u814e\u81df\u75c5\uff08ADPKD\uff09\uff1f1 \u5e38\u67d3\u8272\u9ad4\u986f\u6027\u591a\u56ca\u6027\u814e\u81df\u75c5 (Autosomal dominant polycystic kidney disease)\uff0c\u7c21\u7a31\u70ba\u591a\u56ca\u814e\u75c5\uff0c\u662f\u7531\u65bc\u57fa\u56e0\u8b8a\u7570\u6240\u7522\u751f\u7684\u907a\u50b3\u6027\u75be\u75c5\uff0c\u6703\u4f7f\u60a3\u8005\u7684\u814e\u81df\u4e2d\u6f38\u6f38\u51fa\u73fe\u5927\u91cf\u5145\u6eff\u6db2\u9ad4\u7684\u56ca\u816b\u3002\u82e5\u679c\u60a3\u8005\u7684\u814e\u81df\u4e2d\u51fa\u73fe\u904e\u591a\u7684\u56ca\u816b\uff0c\u6216\u662f\u56ca\u816b\u8b8a\u5f97\u904e\u5927\uff0c\u5c31\u6709\u6a5f\u6703\u4f7f\u814e\u81df\u53d7\u640d\u3002\u591a\u56ca\u814e\u75c5\u7684\u56ca\u816b\u6703\u6f38\u6f38\u53d6\u4ee3\u5927\u90e8\u5206\u6b63\u5e38\u7684\u814e\u81df\u7d44\u7e54\uff0c\u964d\u4f4e\u814e\u81df\u529f\u80fd\uff0c\u6700\u5f8c\u66f4\u6703\u5c0e\u81f4\u814e\u81df\u8870\u7aed\u3002 ADPKD\u6709\u591a\u5e38\u898b\uff1f2 ADPKD \u662f\u6700\u70ba\u5e38\u898b\u7684\u907a\u50b3\u6027\u814e\u81df\u75be\u75c5\uff0c\u767c\u75c5\u4e0d\u5206\u4efb\u4f55\u6027\u5225\u53ca\u7a2e\u65cf\u3002\u64da\u4f30\u8a08\uff0cADPKD \u5f71\u97ff\u5168\u7403\u8d85\u904e 1,200 \u842c\u4eba\uff0c\u800c\u6bcf 400 \u81f32,500 \u4eba\u4e2d\u5c31\u67091\u4eba\u60a3\u6709\u6b64\u75be\u75c5\u3002\u4ee5\u9999\u6e2f\u7d04 750 \u842c\u4eba\u53e3\u8a08\u7b97\uff0c\u5373\u7d04\u6709 3,000 \u81f3 18,750 \u4f4d ADPKD \u60a3\u8005\u3002 ADPKD\u662f\u5982\u4f55\u907a\u50b3\u7684?3 ADPKD\u662f\u4e00\u7a2e\u907a\u50b3\u6027\u75be\u75c5\uff0c\u5728\u907a\u50b3\u4e2d\u5177\u6709\u300c\u986f\u6027\u300d\u7684\u6a21\u5f0f\u3002\u5b83\u4e3b\u8981\u662f\u7531PKD1\u57fa\u56e0\u53caPKD2\u57fa\u56e0\u7684\u7a81\u8b8a\u800c\u5f15\u8d77\u7684\uff0c\u7236\u6bcd\u4e2d\u53ea\u8981\u5176\u4e2d\u4e00\u4eba\u53d7\u7570\u5e38\u57fa\u56e0\u6240\u5f71\u97ff\uff0c\u4fbf\u53ef\u80fd\u5c07\u6b64\u75be\u75c5\u907a\u50b3\u7d66\u4e0b\u4e00\u4ee3\u3002 ADPKD\u60a3\u8005\u6703\u51fa\u73fe\u4ec0\u9ebc\u75c7\u72c0\uff1f4,5 \u5f88\u591aADPKD\u60a3\u8005\u7531\u65bc\u53ea\u51fa\u73fe\u5f88\u8f15\u5fae\u75c7\u72c0\uff0c\u751a\u81f3\u5f9e\u672a\u6709\u904e\u75c7\u72c0\uff0c \u56e0\u6b64\u5f9e\u672a\u88ab\u8a3a\u65b7\u6709ADPKD\u3002\u4e00\u822c\u800c\u8a00\uff0cADPKD\u60a3\u8005\u51fa\u73fe\u7684\u9996\u7a2e\u75c7\u72c0\u901a\u5e38\u662f\u9ad8\u8840\u58d3\u3001\u5c3f\u6db2\u5e36\u8840\u3001\u8179\u90e8\u6216\u80cc\u90e8\u611f\u5230\u75db\u695a\uff1b\u4ea6\u6709\u4e00\u4e9bADPKD\u60a3\u8005\u6703\u9996\u5148\u51fa\u73fe\u5c3f\u9053\u611f\u67d3\u6216\u662f\u814e\u7d50\u77f3\u7b49\u7684\u75c7\u72c0\u3002 ADPKD\u7684\u75c5\u60c5\u5206\u70ba\u591a\u5c11\u968e\u6bb5?6 \u96a8\u8457ADPKD\u7684\u75c5\u60c5\u6f38\u6f38\u60e1\u5316\uff0c\u60a3\u8005\u814e\u81df\u4e2d\u7684\u814e\u56ca\u816b\u5927\u5c0f\u53ca\u6578\u91cf\u5747\u6703\u589e\u52a0\u3002\u591a\u56ca\u814e\u75c5\u4e2d\u7684\u56ca\u816b\u6703\u6f38\u6f38\u53d6\u4ee3\u5927\u90e8\u5206\u6b63\u5e38\u7684\u814e\u81df\u7d44\u7e54\uff0c\u7e7c\u800c\u958b\u59cb\u5f71\u97ff\u814e\u81df\u7684\u529f\u80fd\uff0c\u4e26\u767c\u5c55\u70ba\u6162\u6027\u814e\u81df\u75be\u75c5\uff0c\u6700\u7d42\u751a\u81f3\u6703\u6709\u53ef\u80fd\u5c0e\u81f4\u814e\u81df\u8870\u7aed\uff1b\u800c\u6162\u6027\u814e\u81df\u75be\u75c5\u7684\u75c5\u60c5\u5206\u70ba\u4ee5\u4e0b\u4e94\u500b\u968e\u6bb5\uff1a &nbsp; \u6162\u6027\u814e\u81df\u75be\u75c5\u968e\u6bb5 \u814e\u5c0f\u7403\u904e\u6ffe\u7387 \u75c5\u60c5\u63cf\u8ff0 \u7b2c\u4e00\u671f &gt;90 \u814e\u529f\u80fd\u6b63\u5e38 (90% \u4ee5\u4e0a\uff09 \u7b2c\u4e8c\u671f 60-89 \u6bd4\u6b63\u5e38\u814e\u529f\u80fd\u7a0d\u5dee \u7b2c\u4e09A\u671f 45-59 \u814e\u529f\u80fd\u51fa\u73fe\u8f15\u5fae\u81f3\u4e2d\u5ea6\u60e1\u5316 \u7b2c\u4e09B\u671f 30-44 \u7b2c\u56db\u671f 15-29 \u814e\u529f\u80fd\u6bd4\u6b63\u5e38\u60c5\u6cc1\u5dee\u5f88\u591a \u7b2c\u4e94\u671f\uff08\u672b\u671f\uff09 &lt;15 \u814e\u81df\u6709\u8870\u7aed\u7684\u98a8\u96aa\u6216\u5df2\u7d93\u8870\u7aed [&hellip;]"}