我正在尝试将数据传递给 Windows Phone 应用程序中浏览器的 ScriptNotify 事件。但是,window.external.notify
不起作用。如果我尝试
try {window.external.notify(value);}
catch (e) {alert(e.message);}
然后它向我显示“对象不支持此操作”。
如何将数据从 Windows Phone 浏览器传递到 C# 应用程序?
我正在尝试将数据传递给 Windows Phone 应用程序中浏览器的 ScriptNotify 事件。但是,window.external.notify
不起作用。如果我尝试
try {window.external.notify(value);}
catch (e) {alert(e.message);}
然后它向我显示“对象不支持此操作”。
如何将数据从 Windows Phone 浏览器传递到 C# 应用程序?