403148-1.html 329 B

1234567891011121314151617181920212223
  1. <html>
  2. <head>
  3. <script>
  4. function boom()
  5. {
  6. document.getElementById("ce").contentEditable = true;
  7. document.documentElement.offsetHeight;
  8. document.getElementById("finput").setAttribute("type", "");
  9. }
  10. </script>
  11. </head>
  12. <body onload="boom();">
  13. <input id="finput" type="file" disabled>
  14. <span id="ce"></span>
  15. </body>
  16. </html>