작성일 : 11-11-23 14:05
|
[Html] 두께 0 으로 iframe 실행하기
|
|
|
글쓴이 :
Mr가망생
 조회 : 3,277
|
if (document.getElementsByName("playtype")[0].checked) {
document.getElementById("rightArea").style.display = "";
html = "<iframe src='http://hrjo-www.spicus.com/myspicus/video/open_player.asp?course_id=" + course_id + "&authKey =" + authKey + "&userId =" + userId + "&payment_seq =" + payment_seq + "&quality=" + quality + "&lecture_idx=" + lecture_idx + "&title=" + title + "' frameborder=0 width=0 height=0></iframe>";
document.getElementById("rightArea").innerHTML = html;
}
<html>
<div id="rightArea" style="position:absolute; float:right;width:0px; height:0px; left:100px; top:800px; z-index:2; background-color:#ffffff; border:0px;"></div>
</html>
|
|