{"version":"1.0","provider_name":"\u51a0\u82f1\u8c18\u8be2\u6709\u9650\u516c\u53f8","provider_url":"https:\/\/www.champpartners.com\/zh-hans","author_name":"Champ Partners","author_url":"https:\/\/www.champpartners.com\/zh-hans\/blog\/author\/admin\/","title":"\u85aa\u916c\u5916\u5305\u670d\u52a1 | \u5458\u5de5\u85aa\u916c\u8ba1\u7b97\u5230\u85aa\u91d1\u62a5\u8868 \u2013 Champ Partners","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\"><a href=\"https:\/\/www.champpartners.com\/zh-hans\/hr-outsourcing\/payroll\/\">\u85aa\u916c\u5916\u5305\u670d\u52a1<\/a><\/blockquote>\n<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 * 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\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\tsource = iframes[ i ];\n\n\t\t\tif ( ! source.getAttribute( 'data-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\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\n\/\/--><!]]>\n<\/script><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.champpartners.com\/zh-hans\/hr-outsourcing\/payroll\/embed\/\" width=\"600\" height=\"338\" title=\"\u300a\u85aa\u916c\u5916\u5305\u670d\u52a1\u300b\u2014\u51a0\u82f1\u8c18\u8be2\u6709\u9650\u516c\u53f8\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe>","thumbnail_url":"https:\/\/www.champpartners.com\/zh-hans\/files\/2018\/05\/rawpixel-com-570908-unsplash-1.jpg","thumbnail_width":4000,"thumbnail_height":2414,"description":"\u4e0d\u8bba\u662f\u4efb\u4f55\u89c4\u6a21\u7684\u4f01\u4e1a\uff0c\u4eba\u529b\u8d44\u6e90\u7ba1\u7406\u7684\u884c\u653f\u5de5\u4f5c\u90fd\u662f\u5341\u5206\u67af\u71e5\u4ee5\u53ca\u82b1\u8d39\u65f6\u95f4\u7684\uff0c\u6211\u4eec\u4f1a\u6839\u636e\u5ba2\u6237\u7684\u9700\u6c42\u63d0\u4f9b\u7f16\u5236\u5f53\u6708\u5de5\u8d44\u6c47\u603b\u8868\uff0c\u5458\u5de5\u85aa\u916c\u8ba1\u7b97\uff0c\u85aa\u916c\u5904\u7406\uff0c\u4ee5\u53ca\u85aa\u91d1\u62a5\u8868\u53d1\u653e\u3002\u672c\u516c\u53f8\u62e5\u6709\u4e00\u652f\u4e13\u4e1a\u3001\u9ad8\u6548\u7684\u56e2\u961f\uff0c\u719f\u6089\u9999\u6e2f\u7684\u89c4\u7ae0\u5236\u5ea6\uff0c\u80fd\u591f\u6709\u6548\u534f\u52a9\u5904\u7406\u884c\u653f\u5de5\u4f5c\uff0c\u8ba9\u5ba2\u6237\u4f01\u4e1a\u80fd\u591f\u5c06\u65f6\u95f4\u4ee5\u53ca\u7cbe\u529b\u4e13\u6ce8\u5728\u5bf9\u516c\u53f8\u66f4\u6709\u6548\u53d1\u5c55\u5de5\u4f5c\u4e2d\u3002"}