共用方式為


WebViewControl.InvokeScriptAsync(String, IIterable<String>) 方法

定義

從目前載入的 HTML 執行指定的腳本函式,並搭配特定引數作為非同步動作。

如需詳細資訊,請參閱 Windows.Web.UI.IWebViewControl

public:
 virtual IAsyncOperation<Platform::String ^> ^ InvokeScriptAsync(Platform::String ^ scriptName, IIterable<Platform::String ^> ^ arguments) = InvokeScriptAsync;
IAsyncOperation<winrt::hstring> InvokeScriptAsync(winrt::hstring const& scriptName, IIterable<winrt::hstring> const& arguments);
public IAsyncOperation<string> InvokeScriptAsync(string scriptName, IEnumerable<string> arguments);
function invokeScriptAsync(scriptName, arguments)
Public Function InvokeScriptAsync (scriptName As String, arguments As IEnumerable(Of String)) As IAsyncOperation(Of String)

參數

scriptName
String

Platform::String

winrt::hstring

要叫用的腳本函式名稱。

arguments

IIterable<String>

IEnumerable<String>

IIterable<Platform::String>

IIterable<winrt::hstring>

將引數封裝至腳本函式的字串陣列。

傳回

IAsyncOperation<String>

IAsyncOperation<Platform::String>

IAsyncOperation<winrt::hstring>

非同步作業物件,您可以在成功完成時擷取腳本調用的字串結果。

實作

M:Windows.Web.UI.IWebViewControl.InvokeScriptAsync(System.String,System.Collections.Generic.IEnumerable{System.String}) M:Windows.Web.UI.IWebViewControl.InvokeScriptAsync(Platform::String,System.Collections.Generic.IEnumerable{Platform::String}) M:Windows.Web.UI.IWebViewControl.InvokeScriptAsync(winrt::hstring,System.Collections.Generic.IEnumerable{winrt::hstring})

適用於