在 Windows Phone 8.1 的 Web 视图中查找文本/字符串
本文关键字:查找 文本 字符串 视图 Web Phone Windows | 更新日期: 2023-09-27 18:36:31
我在WebView中打开了一个本地html文件,在这里我需要从Web视图中搜索文本。Android有webview.findAll(string);
和webview.findAllAsync(string);
方法来实现这一目标。
有没有任何方法或替代方法可以在Windows Phone 8.1中做同样的事情?
string html = await myWebView.InvokeScriptAsync("eval", new string[] { "document.documentElement.outerHTML;" });
if(html.Contains("Your text")){
//text available in the web page
}
或者,如果您想获取位置,可以使用html.indexOf("Text")
方法。