windows phone IE7 javascript prb

时间:2011-08-23 10:43:25

标签: windows-phone-7

我制作了一个网页。 Windows 7的IE 7不执行Javascript。如何在Windows Phone上启用Javascript?

2 个答案:

答案 0 :(得分:1)

Windows Phone 7运行IE9的移动版本,因此执行javascript时应该没有问题。我能想到的只有少量信息的是你试图在应用程序中使用webbrowsercontrol。在这种情况下,您应该将IsScriptEnabled属性设置为true以启用控件中的脚本。

答案 1 :(得分:0)

chirag!

在窗口电话7中,您可以启用Javascript。

在xaml中,您可以设置isScriptEnabled = true。

考试:

<phone:WebBrowser HorizontalAlignment="Left" Width="480" HorizontalContentAlignment="Left" VerticalContentAlignment="Top" ScrollViewer.VerticalScrollBarVisibility="Visible" Name="webBrowser" Height="80" VerticalAlignment="Bottom" IsScriptEnabled="True" ScriptNotify="webBrowser_ScriptNotify" Navigated="webBrowser_Navigated" Navigating="webBrowser_Navigating" />

你可以使用事件:

private void webBrowser_ScriptNotify(object sender, Microsoft.Phone.Controls.NotifyEventArgs e)
        {
            //your code : e is returned from the javascript code if javaScript is active
        }

您可以使用以下方式下载HTML内容:webClient或string htmlcontent = webBrowser.SaveToString

希望这有帮助! Thongaduka