{"version":"1.0","provider_name":"Data Recovery Software","provider_url":"https:\/\/datarecovery.ping.fm\/zh-tw\/","author_name":"Data Recovery Software","author_url":"https:\/\/datarecovery.ping.fm\/zh-tw\/","title":"\u9019\u662f\u5982\u4f55\u5728iPhone\u4e0a\u6062\u5fa9\u5df2\u522a\u9664\u8a0a\u606f\u7684[\u6307\u5357]","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"nJdRDfIBzr\"><a href=\"https:\/\/datarecovery.ping.fm\/zh-tw\/retrieve-deleted-text-messages-iphone\/\">\u9019\u662f\u5982\u4f55\u5728iPhone\u4e0a\u6062\u5fa9\u5df2\u522a\u9664\u7684\u7c21\u8a0a\u3002<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/datarecovery.ping.fm\/zh-tw\/retrieve-deleted-text-messages-iphone\/embed\/#?secret=nJdRDfIBzr\" width=\"600\" height=\"338\" title=\"&#8220;\u9019\u662f\u5982\u4f55\u5728iPhone\u4e0a\u6062\u5fa9\u5df2\u522a\u9664\u7684\u7c21\u8a0a\u3002&#8221; &#8212; Data Recovery Software\" data-secret=\"nJdRDfIBzr\" 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","thumbnail_url":"https:\/\/datarecovery.ping.fm\/wp-content\/uploads\/2024\/04\/How-to-Retrieve-Deleted-Text-Messages-from-an-iPhone-TaiwaneseMandarin.jpg","thumbnail_width":1280,"thumbnail_height":731,"description":"\u5982\u4f55\u5f9e iPhone \u6aa2\u7d22\u5df2\u522a\u9664\u7684\u7c21\u8a0a \u662f\u5426\u66fe\u7d93\u4e0d\u5c0f\u5fc3\u522a\u9664\u4e86 iPhone \u4e0a\u7684\u91cd\u8981\u7c21\u8a0a\uff0c\u4e26\u5e0c\u671b\u80fd\u5920\u53d6\u56de\u5b83\uff1f\u82e5\u7c21\u8a0a\u4e2d\u5305\u542b\u6709\u50f9\u503c\u7684\u4fe1\u606f\uff0c\u9019\u7a2e\u60c5\u6cc1\u53ef\u80fd\u6703\u5f15\u8d77\u76f8\u7576\u5927\u7684\u58d3\u529b\u3002\u5e78\u904b\u7684\u662f\uff0c\u6709\u5e7e\u7a2e\u65b9\u6cd5\u53ef\u4ee5\u5617\u8a66\u6062\u5fa9\u9019\u4e9b\u4e1f\u5931\u7684\u7c21\u8a0a\u3002\u7121\u8ad6\u60a8\u662f\u4f7f\u7528 iPhone 14\u3001\u8f03\u820a\u7684\u6a5f\u578b\u9084\u662f\u6700\u65b0\u66f4\u65b0\u7684 iOS\uff0c\u6062\u5fa9\u5df2\u522a\u9664\u7684\u7c21\u8a0a\u53ef\u80fd\u662f\u4e00\u500b\u7c21\u55ae\u7684\u904e\u7a0b\u2014\u5982\u679c\u60a8\u8fc5\u901f\u884c\u52d5\u4e26\u9075\u5faa\u6b63\u78ba\u7684\u6b65\u9a5f\u3002\u5728\u672c\u6587\u4e2d\uff0c\u6211\u5c07\u5206\u4eab\u6211\u7684\u500b\u4eba\u7d93\u9a57\uff0c\u4e26\u5f15\u5c0e\u60a8\u901a\u904e\u5404\u7a2e\u65b9\u6cd5\u5f9e iPhone \u6062\u5fa9\u5df2\u522a\u9664\u7684\u7c21\u8a0a\uff0c\u4ee5\u5e6b\u52a9\u60a8\u70ba\u9019\u985e\u4e8b\u4ef6\u505a\u597d\u6e96\u5099\u3002 1 \u5e38\u898b\u60c5\u5883\uff1a \u610f\u5916\u6ed1\u52d5 &#128561; \u9577\u6309\u64cd\u4f5c\u5931\u8aa4\uff1a\u6709\u6642\uff0c\u5617\u8a66\u8907\u88fd\u6216\u8f49\u767c\u8a0a\u606f\u6642\uff0c\u4e00\u500b\u4e0d\u5c0f\u5fc3\u7684\u9ede\u64ca\u53ef\u80fd\u5c0e\u81f4\u610f\u5916\u522a\u9664\u3002 \u904e\u5ea6\u6e05\u7406\uff1a\u5728\u6574\u7406\u96dc\u4e82\u7121\u7ae0\u7684\u904e\u7a0b\u4e2d\uff0c\u60a8\u53ef\u80fd\u5df2\u7d93\u522a\u9664\u4e86\u4e00\u4e9b\u4e0d\u60f3\u4e1f\u5931\u7684\u5c0d\u8a71\u3002 \u5c0f\u5b69\u73a9\u60a8\u7684\u624b\u6a5f\uff1a\u5982\u679c\u60a8\u66fe\u7d93\u628a\u624b\u6a5f\u4ea4\u7d66\u5c0f\u5b69\u5a1b\u6a02\uff0c\u53ef\u80fd\u6703\u610f\u5916\u767c\u73fe\u4e00\u4e9b\u61c9\u7528\u7a0b\u5e8f\u6216\u7c21\u8a0a\u88ab\u522a\u9664\u4e86\u3002 \u66f4\u65b0\u904e\u8f09 &#128260; \u8edf\u9ad4\u6545\u969c\uff1a\u66f4\u65b0\u5f8c\uff0c\u4e00\u4e9b\u7528\u6236\u5831\u544a\u4e1f\u5931\u4e86\u6578\u64da\uff0c\u5305\u62ec\u7c21\u8a0a\uff0c\u53ef\u80fd\u662f\u7cfb\u7d71\u932f\u8aa4\u6240\u81f4\u3002 iOS \u66f4\u65b0\u5931\u6557\uff1a\u6709\u6642\uff0c\u66f4\u65b0\u672a\u80fd\u6309\u8a08\u5283\u9032\u884c\uff0c\u5c0e\u81f4\u904e\u7a0b\u4e2d\u6578\u64da\u4e1f\u5931\u3002 \u932f\u8aa4\u7684\u9084\u539f\uff1a\u5f9e\u820a\u5099\u4efd\u6062\u5fa9\u60a8\u7684 iPhone \u53ef\u80fd\u6703\u5c0e\u81f4\u7576\u524d\u7684\u8a0a\u606f\u88ab\u820a\u7684\u8986\u84cb\u3002 \u6280\u8853\u9ebb\u7169 &#128736; iPhone \u6545\u969c\uff1a\u7a81\u7136\u5d29\u6f70\u6216\u786c\u9ad4\u554f\u984c\u53ef\u80fd\u5c0e\u81f4\u610f\u5916\u7684\u6578\u64da\u4e1f\u5931\uff0c\u5305\u62ec\u60a8\u7684\u8a0a\u606f\u3002 \u5931\u6557\u7684\u8d8a\u7344\u5617\u8a66\uff1a\u96d6\u7136\u8d8a\u7344\u53ef\u4ee5\u63d0\u4f9b\u5c0d\u60a8\u8a2d\u5099\u66f4\u591a\u7684\u63a7\u5236\uff0c\u4f46\u5982\u679c\u64cd\u4f5c\u4e0d\u7576\uff0c\u98a8\u96aa\u4e4b\u4e00\u5c31\u662f\u6578\u64da\u4e1f\u5931\u3002 \u6c34\u640d\u50b7\uff1aiPhone \u56e0\u5176\u5c0d\u6c34\u7684\u62b5\u6297\u80fd\u529b\u800c\u805e\u540d\uff0c\u4f46\u4e8b\u6545\u767c\u751f\uff0c\u6db2\u9ad4\u640d\u58de\u53ef\u80fd\u662f\u4e1f\u5931\u7c21\u8a0a\u7684\u539f\u56e0\u3002 2 \u9010\u6b65\u6307\u5f15\u3002\u6aa2\u7d22\u5df2\u522a\u9664\u7684 iPhone \u7c21\u8a0a\uff1a \u65b9\u6cd5 1\uff1aiCloud \u6062\u5fa9 &#128242; \u5728\u60a8\u7684 iPhone \u4e0a\uff0c\u8f49\u5230 \u8a2d\u7f6e > \u9ede\u64ca\u9802\u90e8\u7684 Apple ID \u6a6b\u5e45 > \u9078\u64c7 iCloud > \u7ba1\u7406\u5b58\u5132\u7a7a\u9593 [&hellip;]"}