我想从 windows phone 8 中的 html 页面调用 ac# 方法。目前我正在尝试使用以下代码,但它不起作用
JavaScript:
<input id="Button1" type="button" value="button" onclick="window.external.something();" />
和我在 mainpage.xaml 中的 c# 方法
void something()
{
MessageBox.Show("called from javascript");
}
谁能告诉我从java脚本调用ac#代码背后方法的方法。即如何将变量从 javascript 传递给 c# 方法,反之亦然。