17

我正在尝试调用 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 有什么替代品吗?

4

1 回答 1

29

当您在 javascript 中出现语法错误时,就会出现该错误。

于 2012-10-13T08:11:41.170 回答