1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<html contentEditable="true"> <head> <script type="text/javascript"> function boom() { var r = document.documentElement; while(r.firstChild) r.removeChild(r.firstChild); document.execCommand("contentReadOnly", false, ""); document.documentElement.focus(); } </script> </head> <body onload="boom();"></body> </html>