test non concluant également avec "button": pour le coup, IE n'ajoute rien, même après clic;
http://javatwist.imingo.net/test.htm
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Test</title> <script type="text/javascript"> window.onload=function(){ document.getElementById("h").firstChild.appendData(" consent."); document.getElementById("h_2").firstChild.appendData(" consent."); document.getElementById("h_3").firstChild.appendData(" consent."); document.getElementById("h_6").firstChild.appendData(" consent."); document.getElementById("d").firstChild.appendData(" consent."); document.getElementById("l").firstChild.appendData(" consent."); document.getElementById("b").firstChild.appendData(" consent."); } </script> </head> <body> <h1 id="h">Qui ne dit mot</h1> <div id="d">Qui ne dit mot</div> <h2 id="h_2">Qui ne dit mot</h2> <h3 id="h_3">Qui ne dit mot</h3> <h6 id="h_6">Qui ne dit mot</h3> <ul><li id="l">Qui ne dit mot</li></ul> <button id="b">Qui ne dit mot</button> </body> </html>
Partager