為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

A website's active content runs fine in IE8 but not in Firefox 29.

  • 4 回覆
  • 2 有這個問題
  • 39 次檢視
  • 最近回覆由 cor-el

more options

I'm accessing a website with active content, http://www.chezmaya.com/applet/squelette.htm . In IE8 it plays music and displays a dancing figure that can be dragged around with the mouse pointer. In Firefox 29.0.1, on the same machine, it displays the background picture, and an animated gif shows a little action. But the music and the interactive dancing figure are missing. In IE8 I do not have this URL in any kind of trusted sites list, so apparently it works by default.

Just in case it has anything to do with Java, note that I installed the latest version of Java in the past few days for unrelated reasons, and it seems to be working just fine.

I'm accessing a website with active content, http://www.chezmaya.com/applet/squelette.htm . In IE8 it plays music and displays a dancing figure that can be dragged around with the mouse pointer. In Firefox 29.0.1, on the same machine, it displays the background picture, and an animated gif shows a little action. But the music and the interactive dancing figure are missing. In IE8 I do not have this URL in any kind of trusted sites list, so apparently it works by default. Just in case it has anything to do with Java, note that I installed the latest version of Java in the past few days for unrelated reasons, and it seems to be working just fine.

被選擇的解決方法

That page was coded for Internet Explorer and uses nonstandard features such as the window.event object. In a way, it's understandable: when the script in the page was written in August 2004, Firefox was at version 0.9.3 and IE had a market share of 90% or higher.

I'm sure you can find many great pages whose authors have never updated them to work in other browsers. It's unfortunate, but most people still do have IE, so...

從原來的回覆中察看解決方案 👍 1

所有回覆 (4)

more options

That page uses BGSOUND to play a midi file and that only works in IE and not in Firefox.

<BGSOUND src="tocata.mid" loop=infinite>

You can try this bookmarklet to see if that makes the music play via the Windows Media Player. Note that you can also run this script via the command line of the Web Console (Firefox/Tools > Web Developer).


javascript:(function(){function R(w){try{var D=w.document,e=D.getElementsByTagName('bgsound'),B,M,i;for(i=0;E=e[i];i++){M=D.createElement('embed');M.setAttribute('src',E.getAttribute('src'));M.setAttribute('type','application/x-mplayer2');M.setAttribute('height','50');M.setAttribute('width','200');B=D.body;B.firstChild.parentNode.insertBefore(M,B.firstChild);}}catch(e){}}R(self);var i,x;for(i=0;x=frames[i];++i)R(x);})();

more options

Running the script from the web console did cause the site's music to play, but did not restore the missing video animation.

In any event, this kind of approach won't resolve my problem. If I should share that site's URL with anyone else, and if they are using Firefox, they won't be able to display the site properly either.

It seems that the more appropriate answer is that Firefox does not have the capability, perhaps even with extensions, to render this site, or other sites that may work okay in IE. That would be disappointing, but if that's the case then it is the correct answer.

It would be appropriate for the Firefox developers to add the missing audio and video capabilities as standard features.

more options

選擇的解決方法

That page was coded for Internet Explorer and uses nonstandard features such as the window.event object. In a way, it's understandable: when the script in the page was written in August 2004, Firefox was at version 0.9.3 and IE had a market share of 90% or higher.

I'm sure you can find many great pages whose authors have never updated them to work in other browsers. It's unfortunate, but most people still do have IE, so...

more options

Code like this that use MS features will only work in IE and never in other browsers.

o.style.filter = "progid:DXImageTransform.Microsoft.matrix(FilterType=nearest, sizingMethod=\"auto expand\") alpha(opacity=30)"

That JavaScript code is a bit of a nightmare with all semicolons missing to terminate a statement.