Windows phone 8.1调用脚本
本文关键字:调用 脚本 phone Windows | 更新日期: 2023-09-27 18:02:57
在Windows Phone 8中,你可以使用:
(string)browser.InvokeScript("eval", "document.title.toString()");
从浏览器返回页面标题。
你将如何在新的WP8.1的API中做到这一点
对于任何寻找答案的人来说,我使用
让它工作string[] args = { "document.title;" };
string foo = await webView.InvokeScriptAsync("eval", args);
InvokeScript仍支持silverlight for windows phone 8.1