我正在尝试在WebView中调用一个函数。我需要调用的一些目标函数是:
play: function()
{
if (this.value < this.p.max)
{
this.inc();
this.timer = new it_timer({ object: this, method: "play", timeout: 200 });
}
else
this.stop();
},
stop: function()
{
if (this.timer)
this.timer.stop();
this.playing = false;
this.playbutton.style.backgroundPosition = "0 0";
}
我开始致电
webView.InvokeScript("play", new string[0]);
但是没有用,HRESULT:0x80020101。我在这个主题上找到了http://support.microsoft.com/kb/247784,但它根本没有帮助我。
然后我尝试在多个网站上做我发现的例子:
webView.InvokeScript("eval", new string[] { "document.documentElement.outerHTML;");
和
webView.InvokeScript("alert", new string[] {"message"});
但这两个都没有用,给出了相同的HRESULT代码。 WebView正常呈现,javascript在页面上正常工作。
我非常感谢您在确定问题/寻找解决方案时提供帮助。
编辑:似乎是“警告”,并且在类中声明的所有方法都不起作用。在早期的.NET版本中似乎有一个InvokeMethod(..),WinRT还有其他选择吗?答案 0 :(得分:22)
如果您在javascript中出现语法错误,则会出现该错误。