<input type="button" value="会员管理" style="width: 200px; height: 50px;background-image:url(./netShop_jsp/css/icon.jpg)" >
1、target ="-black" _blank :浏览器总在一个新打开、未命名的窗口中载入目标文档。2、target ="_self" _self:这个目标的值对所有没有指定目标的 <a> 标签是默认目标,它使得目标文档载入并显示在相同的框架或者窗口中作为源文档。这个目标是多余且不必要的,除非和文档标题 <base> 标签中的 target 属性一起使用。3、target ="_parent" _parent:这个目标使得文档载入父窗口或者包含来超链接引用的框架的框架集。如果这个引用是在窗口或者在顶级框架中,那么它与目标 _self 等效。4、target ="_top" _top:这个目标使得文档载入包含这个超链接的窗口,用 _top 目标将会清除所有被包含的框架并将文档载入整个浏览器窗口。例如:(你所描述的问题就是用下面这个 target="_top") <a href="welcome.jsp" style="text-decoration:none" target="_top"> <img src="./images/gbfg.png" id="pic1"/> </a>用了 target="_top" ,不管你有多少个页面连接后都只在一个页面显示。
<%@ pageEncoding="utf-8"%><html> <head>...</head> <body> <!--通过锚点实现--> <a href = "a.jsp?x=xValues&y=yValues"> <img src = " "/> </a> <!--通过表单实现--> <form action = "a.jsp" method = "post"> <input type = "hidden" name = "x" value = "xValues" /> <input type = "hidden" name = "y" value = "yValues" /> <input type = "image" name = " " src = " " /> </form> </body></html>