window.onload = function()
{
var iFrm = document.getElementById("iFrmCont");
var doc = iFrm.contentWindow.document.open("text/html","replace");
var txt = "<pre>" + document.getElementById("cont").value + "</pre>";
doc.write(txt);
doc.close();
var styleTag = doc.createElement("style");
styleTag.setAttribute("type", "text/css");
try
{
var cssText = document.createTextNode("FONT {font-size:100%; line-height:0.8em;}");
styleTag.appendChild(cssText);
doc.head.appendChild(styleTag);
}
catch (e)
{
// IE8
styleTag.styleSheet.cssText = "FONT {font-size:12px; line-height:1.8em;}";
var head = doc.getElementsByTagName("head")[0];
head.appendChild(styleTag);
}
}
...............
<iframe id="iFrmCont" style="width:100%;height:400px;border:0px" frameborder="0"></iframe>
<textarea id="cont" style="width:0px;height:0px;display:none"><%=post_cont%></textarea>
...............
동적으로 iframe 생성후 css style 적용 까지
|
2015.09.24 12:05:08
|
2015.09.24 12:05:08
|
863
|
Aiden
Total of Attached file
0.00 Bytes of 0 files
2020.04.24
2019.11.29
2019.11.21
2019.11.07
2017.01.11
2015.09.24
2013.12.20
2011.08.11
2011.07.20
2011.07.13
2011.04.20