这是用于在Silverlight中显示客户启动屏幕的常见JavaScript代码:

function onSourceDownloadProgressChanged(sender, eventArgs) {
            var myHost = document.getElementById("Xaml1");
            var rectBar = myHost.content.findName("rectBar");
            var rectBorder = myHost.content.findName("rectBorder");
            if (eventArgs.progress)
                rectBar.Width = eventArgs.progress * rectBorder.Width;
            else
                rectBar.Width = eventArgs.get_progress() * rectBorder.Width;
        }


出于某种原因,Firefox和Chrome在此行上出现错误:

var rectBar = myHost.content.findName("rectBar");


他们抱怨“ myHost为空”。

这在Internet Explorer中可以正常工作,但在Firefox和Chrome中,由于此错误,进度条永远不会更新。

它遍历的关键部分如下所示:

<div id="silverlightControlHost">
        <object id="xaml1" data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
          <param name="source" value="ClientBin/MyApp.xap"/>
          <param name="onError" value="onSilverlightError" />
          <param name="background" value="white" />
          <param name="minRuntimeVersion" value="4.0.50826.0" />
          <param name="autoUpgrade" value="true" />
          <param name="splashscreensource" value="ClientBin/SplashScreen.xaml" />
          <param name="onSourceDownloadProgressChanged" value="onSourceDownloadProgressChanged" />
          <a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=4.0.50826.0" style="text-decoration:none">
              <img src="http://go.microsoft.com/fwlink/?LinkId=161376" alt="Get Microsoft Silverlight" style="border-style:none"/>
          </a>
        </object><iframe id="_sl_historyFrame" style="visibility:hidden;height:0px;width:0px;border:0px"></iframe></div>

最佳答案

因为它是xaml1,而不是Xaml1,并且Internet Explorer太懒了,根本不关心您的错字。

关于javascript - 为什么这在Firefox和Chrome中失败?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5639586/

10-09 02:02