1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| if (navigator.appName=="Microsoft Internet Explorer")
{
document.write('<div style="border:1px solid #808080;height:500px;width:600px;scroll:auto;" id="textarea" contentEditable="true"></div>');
}
else
{
var iframe=document.createElement("iframe");
iframe.setAttribute("id","textarea");
iframe.setAttribute("width",600);
iframe.setAttribute("height",500);
iframe.style.border = "1px solid #808080";
iframe.style.fontWeight = "normal";
document.body.appendChild(iframe);
iframe.addEventListener("load", function(){document.getElementById('textarea').contentWindow.document.designMode="on";}, true);
document.getElementById('textarea').contentWindow.document.close();
} |
Partager