使用C#访问Windows Phone APP上的HTML元素

时间:2013-11-12 10:29:11

标签: c# html5 windows-phone-8

我为Windows Mobile 8编写了一个移动应用程序,该应用程序发送Ajax请求以从Web检索一些数据。

My Mobile App在HTML5 LocalStorage上存储变量,我需要访问thoes值来更新我的LIVE-TILE内容。

任何建议?

1 个答案:

答案 0 :(得分:0)

如果您使用的是WebBrowser控件,则可以通过javascript函数访问html元素。 只需在html页面中创建javascript函数并从C#代码调用它,例如:

function test(foo){
alert(foo);
}

private void TestButton_OnClick(object sender, EventArgs e)
{
    webBrowser.InvokeScript("test", 1234);
}