티스토리 뷰
#IE 설계 변경에 따른 ActiveX 적용 방식 설명
http://s.microsoft.com/korea/windows/ie/activex/activate/default.mspx
플래쉬, 미디어 플래이어 사용시..
관련 embed 태그를 document.write() 로 작성하고.. js 파일로 빼내준다.
// HTML File
< html>
< body>
< div id="palyerArea">
< script src="palyer.js">< /script>
< /body>
< /html>
// palyer.js
document.write("< embed src='ILoveSky.wmv' />");
이런 방법이면 되는거네..
댓글