Windows phone 7 与emulator中的Internet Explorer相比,web浏览器中的页面看起来有所不同

Windows phone 7 与emulator中的Internet Explorer相比,web浏览器中的页面看起来有所不同,windows-phone-7,webbrowser-control,Windows Phone 7,Webbrowser Control,我正在应用程序的Windows Phone web浏览器控件中加载登录页网页。单击登录按钮时,会出现一个弹出窗口,并将覆盖设置为css/jquery背景,以便无法访问其他按钮。现在的问题是,当我点击登录按钮时,弹出窗口出现,背景变成黑色,javascript被启用。此外,在Windows Phone emulator的Internet Explorer中,相同的页面也可以正常加载 我是一名Windows Phone开发人员,对脚本语言不太了解。请告诉我 我正在加载网页,就像 { Initia

我正在应用程序的Windows Phone web浏览器控件中加载登录页网页。单击登录按钮时,会出现一个弹出窗口,并将覆盖设置为css/jquery背景,以便无法访问其他按钮。现在的问题是,当我点击登录按钮时,弹出窗口出现,背景变成黑色,javascript被启用。此外,在Windows Phone emulator的Internet Explorer中,相同的页面也可以正常加载

我是一名Windows Phone开发人员,对脚本语言不太了解。请告诉我

我正在加载网页,就像

 {
 Initializecomponent();
 webBrowser1.Loaded += WebBrowser_OnLoaded;
}
       private void WebBrowser_OnLoaded(object sender, RoutedEventArgs e)
    {         
  webBrowser1.IsScriptEnabled = true;
                Modules.Userloginurl = Modules.Userloginurl + Modules.deviceId +   "&platform=phone7&market_id=";
                webBrowser1.Source = new  Uri("http://demo.rifluxyss.com/T3/pawebsite/index.php?deviceid=1&platform=iphone&market_id=CA", UriKind.Absolute);
}

添加您希望我们查看的代码。我们不能不看它。嘿,沃金,我已经添加了代码!页面似乎以怪癖模式运行。我建议首先在IE9桌面上测试它,例如fontface不受支持。由于页面布局刚刚更改,并且现在没有登录按钮,因此无法重新设置问题。IE8和所有浏览器(包括emulator中的浏览器)中的页面都很好。