さらに、新しいコードの最初の行が変更されず、古いコードと同じである場合 (つまり、gotoSubmit呼び出しにはパラメーターが指定されていません)、IE でのみ実行できますが、エラーは発生しません。したがって、このソリューションの tpl 部分は依然として古いコードと互換性があります。 4. HTML オブジェクトの ID をオブジェクト名として使用する問題
その後、ie は ID または名前を通じてこのフレームに対応するウィンドウ オブジェクトにアクセスできます。 そして、mf はこのフレームに対応するウィンドウ オブジェクトに名前を通じてのみアクセスできます たとえば、上記のフレーム タグがトップ ウィンドウ内の htm に記述されている場合、次のようにアクセスできます つまり:このウィンドウ オブジェクトにアクセスするには、window.top.frameId または window .top.frameName を使用します mf: このウィンドウ オブジェクトにアクセスするには、window.top.frameName のみを使用できます さらに、window.top.document.getElementById(" FrameId" は mf と ie ") の両方で使用して、フレーム タグ にアクセスできます。 また、window.top.document.getElementById("testFrame").src = 'xx.htm' を使用して、フレーム タグのコンテンツを切り替えることができます。 Frame または window.top.frameName.location = 'xx.htm' を使用してフレームの内容を切り替えることができます フレームとウィンドウの説明については、「ウィンドウとフレーム」の記事を参照してください。 bbs と /test/js/test_frame/ ディレクトリ下のテスト - ---adun 2004.12.09 修正 9. mf では、定義した属性は getAttribute( ) 10. mf にはparentElement parement.children はありませんが、parentNode を使用します。 childNodes の添字の意味は IE と MF で異なり、空のテキスト ノードを使用します。 childNodes に挿入されます。 通常、この問題は、node.getElementsByTagName() を使用して回避できます。 HTML でノードが欠落している場合、IE と MF はparentNodeを異なる方法で解釈します。たとえば、 The value of input.parentNode in MF is form, while the value of input.parentNode in IE is an empty node. There is no removeNode method for nodes in MF. You must use the following method node.parentNode.removeChild( node) 11.const Problems Existing problems: The const keyword cannot be used in IE. Such as const constVar = 32; This is a syntax error in IE. Solution: Do not use const, use var instead. 12. Body object MF’s body exists before the body tag is fully read by the browser, while IE must exist after the body is fully read 13 . url encoding. If you write the url in js, just write it directly & don't write it. For example, var url = 'xx.jsp?objectName=xx&objectEvent=xxx'; frm.action = url, then it is very likely that the url will not be displayed normally. As a result, the parameters are not correctly transmitted to the server Generally, the server will report an error that the parameter is not found Of course, the exception is if it is in tpl, because tpl conforms to the xml specification and requires & to be written as& General MF cannot recognize js & in 14. nodeName and tagName issues Existing issues: In MF, all nodes have nodeName values, but textNode has no tagName value. In IE, there seems to be a problem with the use of nodeName (the specific situation has not been tested, but my IE has died several times). Workaround: Use tagName but should detect if it is empty.
15. Element attributes The input.type attribute is read-only under IE, but it can be modified under MF
16. document.getElementsByName() and document.all[name ] ProblemExisting problem: In IE, neither getElementsByName() nor document.all[name] can be used to obtain div elements (I don’t know if there are other elements that cannot be obtained) .
17. Problems with DOM data islandsExisting problems: In IE, the tag has special meaning, can contain XML DOM, and can be implemented with HTML components Data binding. In MF, is just an unknown tag. In addition, for IE, actually means that this is an ActiveX object, but it is hung in the DOM tree of HTML itself. As a node, it will have a serious impact on the traversal of the DOM tree. Solution: IE's data binding mechanism can be simulated with JS, but it is too troublesome, so it is recommended not to use the data binding mechanism Or look for a library that implements this kind of simulation. We only discuss how to achieve DOM compatibility. In MF, both known HTML tags and other tags that comply with XML specifications are processed using a unified DOM tree. Therefore, MF can actually use DOM data islands, but the small difference from IE is that in IE is a DOM document, while in MF it is just a DOM node. This difference is usually not a problem. But there is a small detail, In order to be compatible with the rather arbitrary syntax of HTML, MF cannot recognize abbreviated empty tags. For example: xxxx, where and is an abbreviation, which will make MF unrecognizable. It should be written as: However, I suspect that if you use XHTML, there may not be such a problem. But I haven’t tried it yet. . Regarding the problem of interfering with the DOM structure of HTML in IE, my current method is to delete it from the DOM of HTML after processing. I don’t know if there is a better solution.