您的位置:首页 > Web前端 > HTML

html frame target属性

2014-05-07 18:17 183 查看
首页index.jsp代码如下所示

<html>
<head>
<title>管理系统</title>
</head>
<frameset rows="70,*,20" cols="*" frameborder="no" >
<frame src="<%=context%>/common/top.jsp" name="topFrame" scrolling="NO" noresize>
<frameset cols="135,*" frameborder="no" id="fstMain">
<frame src="<%=context%>/common/menu.jsp" name="leftFrame" scrolling="NO" noresize>
<frame src="<%=context%>/common/welcome.jsp" name="mainFrame" scrolling="NO" noresize>
</frameset>
<frame src="<%=context%>/common/bottom.jsp" name="footFrame" scrolling="NO" noresize>
</frameset>

</html>
当点击menu.jsp的选项时,menu.jsp发生跳转,而我希望的是右边的展示页面welcome.jsp显示内容发生变化,因此需要指定
menu.jsp的target属性为mainframe,代码如下

<!DOCTYPE HTML>
<html>
<head>
<base target="mainFrame">
<title>Bootstrap菜单</title>
</head>

这样当我们点击menu.jsp时,welcome.jsp展示的内容会发生变化
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  html