{"version":"1.0","provider_name":"World Business Chicago","provider_url":"https:\/\/worldbusinesschicago.com","title":"\u75ab\u60c5\u4ee5\u6765\u829d\u52a0\u54e5\u5e02\u62db\u5546\u5c40\u9996\u6b21\u4e2d\u56fd\u884c | World Business Chicago","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"PUtlybIVSA\"><a href=\"https:\/\/worldbusinesschicago.com\/%e7%96%ab%e6%83%85%e4%bb%a5%e6%9d%a5%e8%8a%9d%e5%8a%a0%e5%93%a5%e5%b8%82%e6%8b%9b%e5%95%86%e5%b1%80%e9%a6%96%e6%ac%a1%e4%b8%ad%e5%9b%bd%e8%a1%8c\/\">\u75ab\u60c5\u4ee5\u6765\u829d\u52a0\u54e5\u5e02\u62db\u5546\u5c40\u9996\u6b21\u4e2d\u56fd\u884c<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/worldbusinesschicago.com\/%e7%96%ab%e6%83%85%e4%bb%a5%e6%9d%a5%e8%8a%9d%e5%8a%a0%e5%93%a5%e5%b8%82%e6%8b%9b%e5%95%86%e5%b1%80%e9%a6%96%e6%ac%a1%e4%b8%ad%e5%9b%bd%e8%a1%8c\/embed\/#?secret=PUtlybIVSA\" width=\"600\" height=\"338\" title=\"&#8220;\u75ab\u60c5\u4ee5\u6765\u829d\u52a0\u54e5\u5e02\u62db\u5546\u5c40\u9996\u6b21\u4e2d\u56fd\u884c&#8221; &#8212; World Business Chicago\" data-secret=\"PUtlybIVSA\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\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\n\/* ]]> *\/\n<\/script>\n","description":"\u53bb\u5e74\u662f\u65b0\u51a0\u7206\u53d1\u540e\u7684\u4e00\u5e74\uff0c\u867d\u7136\u6539\u89c2\u751a\u591a\uff0c\u4f46\u56e0\u75ab\u60c5\u5bfc\u81f4\u7684\u65c5\u884c\u9650\u5236\u3001\u505c\u6446\u548c\u610f\u6599\u5916\u7684\u5c01\u95ed\u7b49\u4f9d\u7136\u5982\u6545\u3002\u503c\u5f97\u6b23\u6170\u7684\u662f\uff0c\u8d8a\u6765\u8d8a\u591a\u7684\u4eba\u4eec\u5f97\u4ee5\u91cd\u62fe\u4ed6\u4eec\u65c5\u884c\u7684\u4e60\u60ef\u3002\u8bf8\u591a\u822a\u7a7a\u516c\u53f8\u3001\u9152\u5e97\u548c\u65c5\u6e38\u670d\u52a1\u4e1a\u7684\u6536\u5165\u6570\u5b57\u4e5f\u7a33\u6b65\u589e\u957f\u3002\u73b0\u5728\u5c31\u8bf7\u52a0\u5165\u6211\u4eec\uff0c\u4e00\u8d77\u5173\u6ce8\u829d\u52a0\u54e5\u5e02\u62db\u5546\u5c40\u9886\u82f1\u7cfb\u5217\uff0c\u4e86\u89e3\u6211\u5c40\u6210\u5458\u5f15\u9886\u829d\u52a0\u54e5\u548c\u5168\u7403\u5404\u5730\u5305\u5bb9\u6027\u7ecf\u6d4e\u53d1\u5c55\u7684\u7b2c\u4e00\u624b\u8d44\u6599\u3002 \u8c08\u6021\u97f5\u5973\u58eb\uff0c\u829d\u52a0\u54e5\u5e02\u62db\u5546\u5c40\u5168\u7403\u6218\u7565\u53d1\u5c55\u90e8\u6210\u5458\uff0c\u80a9\u8d1f\u201c\u4e2d\u56fd\u57ce\u5e02\u4e0e\u829d\u52a0\u54e5\u5e02\u8d38\u6613\u6295\u8d44\u5408\u4f5c\u5021\u8bae\u4e66\u201d\u5bf9\u4e2d\u65b9\u7684\u957f\u671f\u627f\u8bfa\uff0c\u4e8e\u8fd1\u65e5\u4ee3\u8868\u829d\u52a0\u54e5\u524d\u5f80\u4e0a\u6d77 \u3002\u8be5\u5021\u8bae\u4e66\u662f\u4e00\u4efd\u4e92\u5229\u7684\u7ecf\u6d4e\u5408\u4f5c\u534f\u8bae\uff0c\u65e8\u5728\u52a9\u529b\u829d\u52a0\u54e5\u5728\u4e16\u754c\u821e\u53f0\u7684\u84ec\u52c3\u53d1\u5c55\u3002\u4e2d\u65b9\u5408\u4f5c\u57ce\u5e02\u4e3a\u5317\u4eac\u3001\u4e0a\u6d77\u3001\u5929\u6d25\u3001\u9752\u5c9b\u3001\u6c88\u9633\u3001\u676d\u5dde\u3001\u6210\u90fd\u548c\u6b66\u6c49\u3002 \u8c08\u6021\u97f5, \u829d\u52a0\u54e5\u5e02\u62db\u5546\u5c40\u56fd\u9645\u5546\u52a1\u53d1\u5c55\u90e8\u526f\u4e3b\u4efb \u5728\u75ab\u60c5\u4f9d\u7136\u7b3c\u7f69\u5168\u7403\u5e76\u6df1\u523b\u5f71\u54cd\u7740\u5546\u52a1\u65c5\u884c\u4e4b\u9645\uff0c\u6211\u6709\u5e78\u4e0e\u5927\u5bb6\u5206\u4eab\u8fd1\u671f\u5bf9\u4e2d\u56fd\u4e0a\u6d77\u7684\u8bbf\u95ee\u7ecf\u5386\u3002\u8ddd\u79bb\u4e0a\u4e00\u6b21\u829d\u52a0\u54e5\u4e0e\u4e2d\u56fd\u4f19\u4f34\u9762\u5bf9\u9762\u7684\u4f1a\u89c1\u4ee5\u53ca\u4ee3\u8868\u56e2\u4e92\u8bbf\u5df2\u6574\u6574\u4e24\u5e74\u3002 \u5982\u4eca\uff0c\u767b\u673a\u524d\u7684\u4e00\u7cfb\u5217\u6838\u9178\u3001\u6297\u4f53\u68c0\u6d4b\uff0c\u66f4\u52a0\u6f2b\u957f\u7684\u98de\u884c\u65f6\u95f4\uff0c\u4ee5\u53ca\u843d\u5730\u4e0a\u6d77\u540e14+7\u7684\u9694\u79bb\u76d1\u6d4b\u671f\uff0c\u4f7f\u5f97\u5f80\u8fd4\u4e2d\u7f8e\u53d8\u5f97\u5f02\u5e38\u8f9b\u82e6\u3002\u4f46\u7eb5\u7136\u65c5\u9014\u5954\u6ce2\uff0c\u56de\u9996\u8fd9\u6b21\u884c\u7a0b\u4f9d\u65e7\u500d\u611f\u503c\u5f97\uff0c\u56e0\u4e3a\u5b83\u8bc1\u660e\u4e86\u9762\u5bf9\u9762\u4ea4\u6d41\u7684\u91cd\u8981\u6027\uff0c\u5e76\u8ba9\u6211\u4eec\u4e2d\u829d\u5173\u7cfb\u5728\u98ce\u4e91\u53d8\u5e7b\u3001\u4e0d\u65ad\u8fde\u63a5\u7684\u4e16\u754c\u4e2d\u59cb\u7ec8\u4fdd\u6301\u771f\u8bda\u548c\u771f\u5b9e\u3002 \u5728\u4e0a\u6d77\u671f\u95f4\uff0c\u6211\u62dc\u4f1a\u4e86\u4e0a\u6d77\u5e02\u5916\u56fd\u6295\u8d44\u4fc3\u8fdb\u4e2d\u5fc3\u3001\u4e0a\u6d77\u5e02\u5916\u4e8b\u529e\u516c\u5ba4\u4ee5\u53ca\u5728\u829d\u52a0\u54e5\u5f00\u8bbe\u5206\u652f\u673a\u6784\u7684\u4e0a\u6d77\u4f01\u4e1a\u3002\u6bcf\u5bb6\u5355\u4f4d\u90fd\u5bf9\u829d\u52a0\u54e5\u5728\u75ab\u60c5\u4ee5\u6765\u59cb\u7ec8\u4e0e\u4e2d\u65b9\u5408\u4f5c\u4f19\u4f34\u4fdd\u6301\u7ebf\u4e0a\u5bc6\u5207\u8054\u7cfb\uff0c\u5e76\u5728\u673a\u4f1a\u6210\u719f\u4e4b\u9645\u5373\u6d3e\u4ee3\u8868\u4eb2\u81ea\u5230\u8bbf\u6df1\u8868\u89e6\u52a8\u3002 \u6211\u5f88\u8363\u5e78\u80fd\u591f\u4ee3\u8868\u829d\u52a0\u54e5\u51fa\u5e2d\u4e24\u5e74\u6765\u9996\u6b21\u9762\u5bf9\u9762\u7684\u4f1a\u8bae\u3002\u4e0a\u6d77\u7684\u8fd9\u4e00\u7cfb\u5217\u4f1a\u9762\u968f\u5373\u6062\u590d\u4e86\u6240\u6709\u5584\u610f\u548c\u611f\u60c5\u3002\u5927\u5bb6\u90fd\u5f88\u786e\u4fe1\u65e0\u8bba\u9047\u5230\u4ec0\u4e48\u56f0\u96be\u548c\u6311\u6218\uff0c\u4e0a\u6d77\u548c\u829d\u52a0\u54e5\u4e24\u5ea7\u57ce\u5e02\u4e4b\u95f4\u7684\u53cb\u8c0a\u5c06\u59cb\u7ec8\u4fdd\u6301\u4e0d\u53d8\uff0c\u800c\u4e14\u5728\u7ecf\u5386\u98ce\u96e8\u4e4b\u540e\u53ea\u4f1a\u66f4\u52a0\u6df1\u539a\u3002\u4e24\u5e02\u5c06\u81f4\u529b\u4e8e\u5546\u52a1\u5408\u4f5c\uff0c\u4fc3\u8fdb\u548c\u652f\u6301\u53cc\u5411\u6295\u8d44\u8d38\u6613\u6d3b\u52a8\u3002\u4e0a\u6d77\u5e02\u5916\u529e\u526f\u4e3b\u4efb\u8d1d\u5146\u5065\u5148\u751f\u8fd8\u4ee3\u8868\u4e0a\u6d77\u5e02\u653f\u5e9c\u9080\u8bf7\u829d\u52a0\u54e5\u62db\u5546\u5c40\u7387\u9886\u5546\u52a1\u4ee3\u8868\u56e2\u53c2\u52a02022\u5e7411\u6708\u5728\u4e0a\u6d77\u4e3e\u529e\u7684\u4e2d\u56fd\u56fd\u9645\u8fdb\u53e3\u535a\u89c8\u4f1a\u3002","thumbnail_url":"http:\/\/www.worldbusinesschicago.com\/wp-content\/uploads\/2022\/01\/Microblog-Headers-2-300x169.png"}