본문 바로가기

개발하자/자바스크립트

iframe이용,페이지 열기

<html>
<head>
<style type="text/css">
</style>
<script>
window.onload=function(){
b1.onclick=function(){
window.parent.frames[0].location.href="http://www.daum.net";
}
}
</script>
</head>
<body>
<input type="button" value="네이버" id="b1">
<input type="button" value="다음" id="b2">
<iframe src="b.html">
</iframe>
</body>
</html>