使用的a标签的href,之前还好好的,看了下svn的修改记录,只是有人改了一下布局,其它都没动,现在就不能点了。(不是点了不跳转,是鼠标只在链接上就不改变,也无法点击,就像一个静态页面写出来的一样)
上代码
<%@ page contentType="text/html; charset=GBK"
import="com.lbs.commons.GlobalNames,java.lang.*"%>
<%@ taglib uri="/WEB-INF/leaf.tld" prefix="leaf"%>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
<%
String conTextPath = (String) request.getContextPath();
%>
<html>
<head>
<title>工作区</title>
<style type="text/css">
body {
FILTER: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,
src='<%=request.getContextPath()%>/images/welcome.gif', sizingMethod='scale');
}
ul li {
list-style-type: none;
list-style-image: url(<%=request.getContextPath()%>/images/new_image/dot2.gif);
}
</style>
</head>
<!--标题部分-->
<body>
<%!int jbzb1, sjsb1;%>
<%
String jbzb = (String) request.getAttribute("jbzb");
String sjsb = (String) request.getAttribute("sjsb");
if (jbzb == null) {
jbzb1 = 0;
} else {
jbzb1 = Integer.parseInt(jbzb);
}
if (sjsb == null) {
sjsb1 = 0;
} else {
sjsb1 = Integer.parseInt(sjsb);
}
%>
<table id="top" cellspacing="0" cellpadding="0" border="0">
<tr>
<td id="todo"></td>
</tr>
<td id="warn">
<ul
style="list-style-image: none; margin-left: 265px; margin-top: 150px">
<img src="<%=request.getContextPath()%>/images/new_image/ico.gif" />
<font color="red">待办事宜</font>
<li>您有 <a href="<%=conTextPath%>/sysmgr/importantCaseAction.do?method=loadApproveCase">
<font color="red"><%=sjsb1%></font></a> 个省级上报案件需要处理。
</li>
<li>您有 <a href="<%=conTextPath%>/caseinspection/caseInspectionAction.do?method=loadRegions">
<font color="red"><%=jbzb1%></font></a> 个交办转办案件需要处理。
</li>
</ul>
</td>
</tr>
</table>
</body>
<leaf:errors />
</html>
------解决思路----------------------
应该是你的url 问题吧。你看下,可以跳转 度哥不
<html>
<head>
<title>工作区</title>
<style type="text/css">
body {
FILTER: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,
src='/lras/images/welcome.gif', sizingMethod='scale');
}
ul li {
list-style-type: none;
list-style-image: url(/lras/images/new_image/dot2.gif);
}
</style>
</head>
<!--标题部分-->
<body>
<table id="top" cellspacing="0" cellpadding="0" border="0">
<tr>
<td id="todo"></td>
</tr>
<td id="warn">
<ul
style="margin-left: 265px; margin-top: 150px">
<img src="/lras/images/new_image/ico.gif" />
<font color="red">待办事宜</font>
<li>您有 <a href="/lras/sysmgr/importantCaseAction.do?method=loadApproveCase">
<font color="red">0</font></a> 个省级上报案件需要处理。
</li>
<li>您有 <a href="http://www.baidu.com/">
<font color="red">0</font></a> 个交办转办案件需要处理。
</li>
</ul>
</td>
</tr>
</table>
</body>
</html>