下面是我在新聞群組問人得到的回覆,請參考!
Yeh You-Ying wrote:
>
> I visited this website with Mozilla and IE.
> What I saw in Mozilla is just crazy banner picture running.
> And IE didn't show as that.
> I viewed the source of that page, it is constructed with Javascript.
> I'm not familiar with that, so I did not know if it's the bug of Mozilla.
>
> Thanks
Hi You-Ying,
they'll need to change their DOM object access references from
domObject.property.value = xxx to
document.getElementById("domObject").value = xxx
The document.getElementById() accessor method is part of the W3C
standard and has been implemented in all newer IE versions. It doesn't
work in IE and if that's an issue for them, they should do more
sophisticated sniffing, e.g. if(document.getElementById &&
!document.all). I believe Mozilla has decided against implementing a
Microsoft-compatible document.all DOM object access methods...
http://bugzilla.mozilla.org/show_bug.cgi?id=74201
I haven't done this too often, but I'd recommend approaching them about
it and if it doesn't help, filing a bug in Bugzilla against the
evangelism component (I've checked for duplicates already).
Thanks for reporting this!
J.