'WEB'에 해당되는 글 66건
- 2012.01.05 IE9 iframe function 사용하기
2012. 1. 5. 10:01
IE9 iframe function 사용하기
2012. 1. 5. 10:01 in WEB
//parent html
<iframe id="adFrame" name="adFrame" src="ifAd.asp" frameborder="0" scrolling="no" width="240" height="240"></iframe>
//javascript
document.getElementById("adFrame").contentWindow.adReload();
// iFrame html
<iframe id="adFrame" name="adFrame" src="ifAd.asp" frameborder="0" scrolling="no" width="240" height="240"></iframe>
//javascript
document.getElementById("adFrame").contentWindow.adReload();
// iFrame html
<html>
<head>
<title></title>
<meta http-equiv="Cache-Control" content="no-cache"/>
<meta http-equiv="Expires" content="-1"/>
<meta http-equiv="Pragma" content="no-cache"/>
<style>
* {margin: 0;padding: 0;}
body {background-color:#000000;}
</style>
<script language="javascript">
function adReload(){
window.location.reload(true);
}
</script>
</head>
<body>
</body>
</html>