iframe中的target属性
程序员文章站
2022-06-10 11:04:26
...
iframe中的target属性
在使用iframe的时候,我们有时候会遇到,外面的链接,去操作iframe中的页面
<!DOCTYPE html >
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js"></script>
<style>
.matain{
width:800px;
height:600px;
}
</style>
<script type="text/javascript">
$(function(){
$(".btn").bind("click","",function(){
$("#book").css({display:""});
})
});
</script>
<body>
<button class="btn"><a href="/ssm01/Book/index.jsp" target="ntf">Book</a></button>
<button class="btn"><a href="/ssm01/Type/index.jsp" target="ntf">Type</a></button>
<div class="matain">
<iframe style="display:none ;width:1800px;height:1000px;" id="book" src="" name="ntf"></iframe>
</div>
</body>
</html>
如上代码,我们需要给a链接添加一个target的属性,并且其属性值是要操作iframe的name的属性值,这样两者就可以绑定,否则,a链接会在本窗口跳转。
我在上面定义了button的点击事件,设置点击后才显示iframe