{"version":"1.0","provider_name":"\u5982\u4f55\u64cd\u4f5c & \u6700\u4f73\u8f6f\u4ef6","provider_url":"https:\/\/howto.ping.fm\/zh\/","author_name":"zamozhnii","author_url":"https:\/\/howto.ping.fm\/zh\/","title":"\u5982\u4f55\u5728Microsoft Teams\u4e2d\u8bf7\u6c42\u63a7\u5236\u6743\u9650","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"9tuTqWPF5p\"><a href=\"https:\/\/howto.ping.fm\/zh\/microsoft-teams-request-remote-control\/\">\u5982\u4f55\u5728Microsoft Teams\u4e2d\u8981\u6c42\u63a7\u5236\u6743\u9650\uff1f<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/howto.ping.fm\/zh\/microsoft-teams-request-remote-control\/embed\/#?secret=9tuTqWPF5p\" width=\"600\" height=\"338\" title=\"&#8220;\u5982\u4f55\u5728Microsoft Teams\u4e2d\u8981\u6c42\u63a7\u5236\u6743\u9650\uff1f&#8221; &#8212; \u5982\u4f55\u64cd\u4f5c &amp; \u6700\u4f73\u8f6f\u4ef6\" data-secret=\"9tuTqWPF5p\" 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:\/\/www.ping.fm\/howto\/wp-content\/uploads\/2024\/04\/How-to-request-control-in-Microsoft-Teams-Chinese.jpg","thumbnail_width":1280,"thumbnail_height":731,"description":"\u5982\u4f55\u5728Microsoft Teams\u4e2d\u8bf7\u6c42\u63a7\u5236\u6743\uff1f \u534f\u4f5c\u662f\u4efb\u4f55\u56e2\u961f\u6210\u529f\u7684\u751f\u547d\u7ebf\uff0c\u5c24\u5176\u662f\u5728\u8fdc\u7a0b\u6216\u6df7\u5408\u5de5\u4f5c\u573a\u6240\u3002Microsoft Teams\u4e3a\u901a\u4fe1\u548c\u5de5\u4f5c\u6d41\u7a0b\u96c6\u6210\u63d0\u4f9b\u4e86\u4e00\u4e2a\u5f3a\u5927\u7684\u5e73\u53f0\uff0c\u4f46\u5bf9\u8bb8\u591a\u7528\u6237\u6765\u8bf4\uff0c\u5176\u72ec\u7279\u4e4b\u5904\u5728\u4e8e\u80fd\u591f\u5728\u4f1a\u8bae\u4e2d\u4e0e\u6587\u6863\u4e92\u52a8\u548c\u7f16\u8f91\u3002\u8fd9\u79cd\u534f\u4f5c\u7684\u4e00\u4e2a\u5173\u952e\u529f\u80fd\u662f\u201c\u8bf7\u6c42\u63a7\u5236\u6743\u201d\u529f\u80fd\uff0c\u4f7f\u7528\u6237\u80fd\u591f\u63a7\u5236\u4e3b\u6301\u4eba\u7684\u5c4f\u5e55\uff0c\u4ece\u800c\u66f4\u79ef\u6781\u5730\u8d21\u732e\u3002\u5728\u8fd9\u7bc7\u6587\u7ae0\u4e2d\uff0c\u6211\u5f88\u9ad8\u5174\u5206\u4eab\u6211\u5bf9Microsoft Teams\u4e2d\u7684\u8bf7\u6c42\u63a7\u5236\u6743\u529f\u80fd\u7684\u4e2a\u4eba\u4f53\u9a8c\u3002\u8ddf\u968f\u6211\u4e00\u8d77\uff0c\u6211\u5c06\u6982\u8ff0\u5982\u4f55\u5229\u7528\u8fd9\u4e2a\u529f\u80fd\u6765\u589e\u5f3a\u4f1a\u8bae\u671f\u95f4\u7684\u5728\u7ebf\u534f\u4f5c\u3002\u6b64\u5916\uff0c\u5982\u679c\u60a8\u6b63\u5728\u5bfb\u627e\u66f4\u5168\u9762\u7684\u6307\u5357\uff0c\u8bf7\u67e5\u770b\u5982\u4f55\u5728Microsoft Teams\u4e2d\u7ed9\u4e88\u63a7\u5236\u6743\u3002 1 \u5e38\u89c1\u573a\u666f\uff1a \u5728\u6f14\u793a\u4e2d\u542f\u7528\u5b9e\u65f6\u7f16\u8f91 &#127912; \u6211\u8fdb\u884cPowerPoint\u6f14\u793a\u65f6\uff0c\u53d1\u73b0\u8bf7\u6c42\u63a7\u5236\u6743\u4ee5\u8fdb\u884c\u5b9e\u65f6\u7f16\u8f91\u6216\u6ce8\u91ca\u5f88\u6709\u6548\u3002 \u5728\u5934\u8111\u98ce\u66b4\u4f1a\u8bae\u671f\u95f4\uff0c\u5f53\u60f3\u6cd5\u7684\u6d41\u52a8\u8981\u6c42\u5bf9\u5448\u73b0\u7684\u5185\u5bb9\u8fdb\u884c\u5feb\u901f\u8c03\u6574\u65f6\uff0c\u8fd9\u7279\u522b\u6709\u7528\u3002 \u865a\u62df\u4f1a\u8bae\u4e2d\u7684\u534f\u4f5c\u5f0f\u6545\u969c\u6392\u9664 &#128736; \u5728\u4e00\u4e2a\u8fdc\u7a0b\u6280\u672f\u652f\u6301\u4f1a\u8bdd\u4e2d\uff0c\u8bf7\u6c42\u63a7\u5236\u6743\u4f7f\u6211\u80fd\u591f\u76f4\u63a5\u5728\u7528\u6237\u7684\u73af\u5883\u4e2d\u6392\u9664\u6545\u969c\u3002 \u8fd9\u79cd\u5b9e\u8df5\u65b9\u6cd5\u4e3a\u6240\u6709\u76f8\u5173\u65b9\u63d0\u4f9b\u4e86\u66f4\u6709\u6548\u548c\u6709\u6559\u80b2\u610f\u4e49\u7684\u4f53\u9a8c\u3002 \u9488\u5bf9\u65b0\u5de5\u5177\u7684\u4e92\u52a8\u5f0f\u57f9\u8bad\u8bfe\u7a0b &#128269; \u5f53\u6211\u53ef\u4ee5\u8bf7\u6c42\u63a7\u5236\u6743\u6765\u6f14\u793a\u7279\u6027\u6216\u6307\u5bfc\u7528\u6237\u901a\u8fc7\u6d41\u7a0b\u65f6\uff0c\u65b0\u8f6f\u4ef6\u5de5\u5177\u7684\u57f9\u8bad\u8bfe\u7a0b\u53d8\u5f97\u66f4\u52a0\u4e92\u52a8\u3002 \u62e5\u6709\u8fd9\u79cd\u80fd\u529b\u51cf\u5c11\u4e86\u53c2\u4e0e\u8005\u7684\u6df7\u6dc6\uff0c\u5e76\u63d0\u9ad8\u4e86\u4ed6\u4eec\u5bf9\u4fe1\u606f\u7684\u4fdd\u6301\u529b\u3002 2 \u5206\u6b65\u6307\u5357\u3002Microsoft Teams\u8fdc\u7a0b\u63a7\u5236\uff1a \u65b9\u6cd51\uff1a\u5728\u5c4f\u5e55\u5171\u4eab\u671f\u95f4\u8bf7\u6c42\u63a7\u5236\u6743 &#128421; \u5728\u4f1a\u8bae\u4e2d\u5176\u4ed6\u53c2\u4e0e\u8005\u6b63\u5728\u5206\u4eab\u5c4f\u5e55\u65f6\uff0c\u5c06\u9f20\u6807\u60ac\u505c\u5728\u6b63\u5728\u5206\u4eab\u7684\u5185\u5bb9\u4e0a\uff0c\u4ee5\u663e\u793a\u4f1a\u8bae\u63a7\u5236\u9009\u9879\u3002 \u70b9\u51fb&#8216;\u8bf7\u6c42\u63a7\u5236\u6743&#8217;\u6309\u94ae\uff0c\u8fd9\u5c06\u63d0\u793a\u6f14\u793a\u8005\u6279\u51c6\u6216\u62d2\u7edd\u60a8\u7684\u8bf7\u6c42\u3002 \u4e00\u65e6\u6388\u4e88\u63a7\u5236\u6743\uff0c\u6211\u5c31\u80fd\u50cf\u64cd\u4f5c\u81ea\u5df1\u7684\u5c4f\u5e55\u4e00\u6837\u4e0e\u6f14\u793a\u8005\u7684\u5c4f\u5e55\u4e92\u52a8\u3002\u8fd9\u9002\u7528\u4e8e\u7f16\u8f91\u6587\u6863\u3001\u6d4f\u89c8\u7f51\u7ad9\u6216\u8fdb\u884c\u6f14\u793a\u3002 \u6ce8\u610f\uff1a\u6f14\u793a\u8005\u53ef\u4ee5\u968f\u65f6\u64a4\u56de\u63a7\u5236\u6743\u3002 \u7ed3\u8bba\uff1a\u8fd9\u4e2a\u65b9\u6cd5\u76f4\u63a5\u4e14\u5728\u9700\u8981\u7acb\u5373\u534f\u4f5c\u65f6\u6548\u679c\u5f88\u597d\u3002 \u65b9\u6cd52\uff1a\u6f14\u793a\u65f6\u6388\u4e88\u63a7\u5236\u6743 &#127899; \u4f5c\u4e3a\u6f14\u793a\u8005\uff0c\u6211\u53ef\u4ee5\u9009\u62e9\u4e3b\u52a8\u5411\u53c2\u4e0e\u8005\u6388\u4e88\u63a7\u5236\u6743\uff0c\u8fd9\u662f\u901a\u8fc7\u60ac\u505c\u5728\u4ed6\u4eec\u7684\u540d\u5b57\u4e0a\u5e76\u70b9\u51fb&#8216;\u7ed9\u4e88\u63a7\u5236\u6743&#8217;\u9009\u9879\u6765\u5b8c\u6210\u7684\u3002 \u5c31\u50cf\u8bf7\u6c42\u63a7\u5236\u6743\u4e00\u6837\uff0c\u53c2\u4e0e\u8005\u73b0\u5728\u53ef\u4ee5\u4e0e\u6211\u7684\u5c4f\u5e55\u4e92\u52a8\uff0c\u76f4\u5230\u6211\u51b3\u5b9a\u70b9\u51fb&#8216;\u6536\u56de\u63a7\u5236\u6743&#8217;\u3002 \u8fd9\u79cd\u9884\u5148\u6388\u4e88\u63a7\u5236\u6743\u7684\u65b9\u6cd5\u53ef\u4ee5\u4f7f\u63a7\u5236\u6743\u7684\u8fc7\u6e21\u66f4\u52a0\u987a\u7545\uff0c\u7279\u522b\u662f\u5728\u591a\u4eba\u9700\u8981\u8d21\u732e\u7684\u8ba1\u5212\u534f\u4f5c\u4f1a\u8bae\u4e2d\u3002 \u6ce8\u610f\uff1a\u786e\u4fdd\u6e05\u695a\u5730\u6c9f\u901a\u8c01\u5e94\u8be5\u4f55\u65f6\u63a7\u5236\u6743\uff0c\u4ee5\u907f\u514d\u4efb\u4f55\u6df7\u6dc6\u3002 \u7ed3\u8bba\uff1a\u4e3b\u52a8\u6388\u4e88\u63a7\u5236\u6743\u53ef\u4ee5\u5e2e\u52a9\u4fdd\u6301\u534f\u4f5c\u52aa\u529b\u7684\u7ed3\u6784\u5316\u6d41\u7a0b\u3002 \u65b9\u6cd53\uff1a\u4f7f\u7528\u952e\u76d8\u5feb\u6377\u65b9\u5f0f\u8bf7\u6c42\u548c\u91ca\u653e\u63a7\u5236\u6743 &#129337; \u6211\u53d1\u73b0\u6309\u4e0b&#8216;Ctrl+Shift+Spacebar&#8217;\u53ef\u4ee5\u89e6\u53d1\u63a7\u5236\u6743\u8bf7\u6c42\uff0c\u4e0d\u9700\u8981\u901a\u8fc7\u83dc\u5355\u9009\u9879\u5c31\u80fd\u8282\u7701\u65f6\u95f4\u3002 \u4f5c\u4e3a\u53c2\u4e0e\u8005\uff0c\u518d\u6b21\u6309\u4e0b&#8216;Ctrl+Shift+Spacebar&#8217;\u53ef\u4ee5\u8fc5\u901f\u5c06\u63a7\u5236\u6743\u4ea4\u8fd8\u7ed9\u6f14\u793a\u8005\u3002 \u5728\u5feb\u8282\u594f\u7684\u4f1a\u8bae\u4e2d\uff0c\u8fd9\u79cd\u8bf7\u6c42\u548c\u91ca\u653e\u63a7\u5236\u6743\u7684\u65b9\u6cd5\u975e\u5e38\u9ad8\u6548\uff0c\u65f6\u95f4\u662f\u5b9d\u8d35\u7684\u8d44\u6e90\u3002 \u6ce8\u610f\uff1a\u8bf7\u8bb0\u4f4f\u8fd9\u4e9b\u952e\u76d8\u5feb\u6377\u65b9\u5f0f\u53ef\u80fd\u4f1a\u66f4\u6539\uff0c\u6216\u8005\u6839\u636e\u60a8\u7684\u64cd\u4f5c\u7cfb\u7edf\u6216Teams\u5ba2\u6237\u7aef\u7248\u672c\u800c\u6709\u6240\u4e0d\u540c\u3002 \u7ed3\u8bba\uff1a\u4e86\u89e3\u548c\u5229\u7528\u952e\u76d8\u5feb\u6377\u65b9\u5f0f\u53ef\u4ee5\u6781\u5927\u5730\u589e\u5f3a\u534f\u4f5c\u7684\u6d41\u7545\u6027\u3002 \u65b9\u6cd54\uff1a\u5f53\u8bf7\u6c42\u63a7\u5236\u6743\u4e0d\u8d77\u4f5c\u7528\u65f6\u7684\u6545\u969c\u6392\u9664 &#128680; \u5f53\u201c\u8bf7\u6c42\u63a7\u5236\u6743\u201d\u6309\u94ae\u4e0d\u53ef\u89c1\u6216\u4e0d\u6309\u9884\u671f\u5de5\u4f5c\u65f6\uff0c\u6211\u4ece\u68c0\u67e5Teams\u8bbe\u7f6e\u5f00\u59cb\uff0c\u786e\u4fdd\u5141\u8bb8\u6210\u5458\u5171\u4eab\u5c4f\u5e55\u3002 \u5982\u679c\u95ee\u9898\u4ecd\u7136\u5b58\u5728\uff0c\u6211\u5efa\u8bae\u53c2\u4e0e\u8005\u66f4\u65b0\u4ed6\u4eec\u7684Teams\u5e94\u7528\u7a0b\u5e8f\uff0c\u56e0\u4e3a\u8fc7\u65f6\u7684\u7248\u672c\u53ef\u80fd\u4f1a\u5f15\u8d77\u517c\u5bb9\u6027\u95ee\u9898\u3002 \u6709\u65f6\u91cd\u65b0\u542f\u52a8Teams\u5e94\u7528\u7a0b\u5e8f\u53ef\u80fd\u662f\u89e3\u51b3\u8bf7\u6c42\u63a7\u5236\u6743\u529f\u80fd\u610f\u5916\u6545\u969c\u7684\u6700\u5feb\u65b9\u6cd5\u3002 \u6ce8\u610f\uff1a\u5982\u679c\u95ee\u9898\u6301\u7eed\u5b58\u5728\uff0c\u8054\u7cfbIT\u652f\u6301\u6216\u54a8\u8be2Microsoft Teams\u5728\u7ebf\u5e2e\u52a9\u53ef\u80fd\u662f\u5fc5\u8981\u7684\u3002 \u7ed3\u8bba\uff1a\u6545\u969c\u6392\u9664\u901a\u5e38\u662f\u4e00\u4e2a\u6392\u9664\u6cd5\u7684\u8fc7\u7a0b\uff0c\u4f46\u4ece\u6700\u7b80\u5355\u7684\u6b65\u9aa4\u5f00\u59cb\u53ef\u4ee5\u8282\u7701\u65f6\u95f4\u3002 \u65b9\u6cd55\uff1a\u4e86\u89e3\u6743\u9650\u548c\u9690\u79c1\u95ee\u9898 &#128274; \u5728\u4f7f\u7528\u8bf7\u6c42\u63a7\u5236\u6743\u529f\u80fd\u4e4b\u524d\uff0c\u4e86\u89e3\u6240\u6d89\u53ca\u7684\u6743\u9650\u5f88\u91cd\u8981\u3002\u6211\u603b\u662f\u786e\u4fdd\u6240\u6709\u53c2\u4e0e\u8005\u90fd\u77e5\u9053\u63a7\u5236\u6743\u53ef\u4ee5\u968f\u65f6\u88ab\u6388\u4e88\u6216\u64a4\u9500\u3002 [&hellip;]"}