<?xml version="1.0"?>
<oembed><version>1.0</version><provider_name>&#x30B8;&#x30E7;&#x30FC;&#x30C9;&#x30F3;&#x30FB;&#x30A6;&#x30A7;&#x30A4;&#x30EB;|&#x30D8;&#x30EB;&#x30B9;&#x30DE;&#x30CD;&#x30FC;&#x30B8;&#x30E1;&#x30F3;&#x30C8;&#x30AF;&#x30EA;&#x30CB;&#x30C3;&#x30AF;|&#x30EF;&#x30F3;&#x30B9;&#x30C8;&#x30C3;&#x30D7;&#x306E;&#x30E9;&#x30A4;&#x30C8;&#x30E1;&#x30C7;&#x30A3;&#x30AB;&#x30EB;&#x30A8;&#x30B9;&#x30C6;&#x30C6;&#x30A3;&#x30C3;&#x30AF;&#x30B5;&#x30FC;&#x30D3;&#x30B9;&#x3067;&#x3001;&#x5B89;&#x5FC3;&#x3068;&#x4FE1;&#x983C;&#x3068;&#x5FEB;&#x9069;&#x3055;&#x3092;&#x304A;&#x5C4A;&#x3051;&#x3057;&#x307E;&#x3059;&#x3002;</provider_name><provider_url>https://jourdenwell.com.tw/ja</provider_url><author_name>connact</author_name><author_url>https://jourdenwell.com.tw/ja/author/connact/</author_url><title>2023.07.31 &#x97D3;&#x56FD;&#x30B9;&#x30B8;&#x30E7;&#x30F3;&#x751F;&#x7523;R&amp;D&#x30BB;&#x30F3;&#x30BF;&#x30FC;&#x8A2A;&#x554F;</title><type>rich</type><width>600</width><height>338</height><html>&lt;blockquote class="wp-embedded-content" data-secret="2iEMQP4Rtj"&gt;&lt;a href="https://jourdenwell.com.tw/ja/2023-07-31/"&gt;2023.07.31 &#x97D3;&#x56FD;&#x30B9;&#x30B8;&#x30E7;&#x30F3;&#x751F;&#x7523;R&amp;D&#x30BB;&#x30F3;&#x30BF;&#x30FC;&#x8A2A;&#x554F;&lt;/a&gt;&lt;/blockquote&gt;&lt;iframe sandbox="allow-scripts" security="restricted" src="https://jourdenwell.com.tw/ja/2023-07-31/embed/#?secret=2iEMQP4Rtj" width="600" height="338" title="&#x201C;2023.07.31 &#x5357;&#x97D3;&#x79C0;&#x6770;&#x751F;&#x7522;&#x7814;&#x767C;&#x4E2D;&#x5FC3;&#x53C3;&#x8A2A;&#x5718;&#x201D; &#x2014; &#x4F50;&#x767B;&#x5FAE;&#x723E;|&#x5065;&#x5EB7;&#x7BA1;&#x7406;&#x91AB;&#x7F8E;&#x8A3A;&#x6240;|&#x4E00;&#x7AD9;&#x5F0F;&#x8F15;&#x91AB;&#x7F8E;&#x670D;&#x52D9;&#xFF0C;&#x8B93;&#x4F60;&#x5B89;&#x5FC3;&#x3001;&#x653E;&#x5FC3;&#x3001;&#x8212;&#x5FC3;" data-secret="2iEMQP4Rtj" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"&gt;&lt;/iframe&gt;&lt;script&gt;
/**
 * WordPress inline HTML embed
 *
 * @since 4.4.0
 * @output wp-includes/js/wp-embed.js
 *
 * Single line comments should not be used since they will break
 * the script when inlined in get_post_embed_html(), specifically
 * when the comments are not stripped out due to SCRIPT_DEBUG
 * being turned on.
 */
(function ( window, document ) {
	'use strict';

	/* Abort for ancient browsers. */
	if ( ! document.querySelector || ! window.addEventListener || typeof URL === 'undefined' ) {
		return;
	}

	/** @namespace wp */
	window.wp = window.wp || {};

	/* Abort if script was already executed. */
	if ( !! window.wp.receiveEmbedMessage ) {
		return;
	}

	/**
	 * Receive embed message.
	 *
	 * @param {MessageEvent} e
	 */
	window.wp.receiveEmbedMessage = function( e ) {
		var data = e.data;

		/* Verify shape of message. */
		if (
			! ( data || data.secret || data.message || data.value ) ||
			/[^a-zA-Z0-9]/.test( data.secret )
		) {
			return;
		}

		var iframes = document.querySelectorAll( 'iframe[data-secret="' + data.secret + '"]' ),
			blockquotes = document.querySelectorAll( 'blockquote[data-secret="' + data.secret + '"]' ),
			allowedProtocols = new RegExp( '^https?:$', 'i' ),
			i, source, height, sourceURL, targetURL;

		for ( i = 0; i &lt; blockquotes.length; i++ ) {
			blockquotes[ i ].style.display = 'none';
		}

		for ( i = 0; i &lt; iframes.length; i++ ) {
			source = iframes[ i ];

			if ( e.source !== source.contentWindow ) {
				continue;
			}

			source.removeAttribute( 'style' );

			if ( 'height' === data.message ) {
				/* Resize the iframe on request. */
				height = parseInt( data.value, 10 );
				if ( height &gt; 1000 ) {
					height = 1000;
				} else if ( ~~height &lt; 200 ) {
					height = 200;
				}

				source.height = height;
			} else if ( 'link' === data.message ) {
				/* Link to a specific URL on request. */
				sourceURL = new URL( source.getAttribute( 'src' ) );
				targetURL = new URL( data.value );

				if (
					allowedProtocols.test( targetURL.protocol ) &amp;&amp;
					targetURL.host === sourceURL.host &amp;&amp;
					document.activeElement === source
				) {
					window.top.location.href = data.value;
				}
			}
		}
	};

	function onLoad() {
		var iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),
			i, source, secret;

		for ( i = 0; i &lt; iframes.length; i++ ) {
			/** @var {IframeElement} */
			source = iframes[ i ];

			secret = source.getAttribute( 'data-secret' );
			if ( ! secret ) {
				/* Add secret to iframe */
				secret = Math.random().toString( 36 ).substring( 2, 12 );
				source.src += '#?secret=' + secret;
				source.setAttribute( 'data-secret', secret );
			}

			/*
			 * Let post embed window know that the parent is ready for receiving the height message, in case the iframe
			 * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the
			 * window will then (re-)send the height message right away.
			 */
			source.contentWindow.postMessage( {
				message: 'ready',
				secret: secret
			}, '*' );
		}
	}

	window.addEventListener( 'message', window.wp.receiveEmbedMessage, false );
	document.addEventListener( 'DOMContentLoaded', onLoad, false );
})( window, document );
//# sourceURL=https://jourdenwell.com.tw/wp-includes/js/wp-embed.js
&lt;/script&gt;</html><thumbnail_url>https://jourdenwell.com.tw/wp-content/uploads/2024/02/&#x87A2;&#x5E55;&#x64F7;&#x53D6;&#x756B;&#x9762;-2024-03-04-145932.png</thumbnail_url><thumbnail_width>359</thumbnail_width><thumbnail_height>204</thumbnail_height></oembed>
