作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
<分区>
我只想突出显示表格中选定行的颜色。我已经使用奇偶技术使所有行的背景颜色交替。但是现在当我点击某行时,整个交替的背景行为都会受到干扰。这是代码:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ page import="java.util.*"%>
<%@ page import="java.sql.*"%>
<%@ page import="jkl.*"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
$(document).ready(function() {
$('tr[name=t1]').each(function(a, b) {
$(b).click(function() {
$('tr[name=t1]').css('background', '#D8D8D8');
$(this).css('background', '#F2F5A9');
});
});
});
</script>
<script>
function radioselect(id) {
document.getElementById("ra" + id).checked = true;
}
</script>
</head>
<body>
<table border="1">
<%
if (session.getAttribute("al") != null) {
ArrayList<Pojo> al = (ArrayList<Pojo>) session
.getAttribute("al");
if (al.size() > 0) {
for (Pojo p : al) {
if (al.indexOf(p) % 2 == 0) {
%>
<tr name="t1" id="<%=al.indexOf(p)%>" style="background: #81DAF5;"
onclick="radioselect(this.id);">
<%
} else {
%>
<tr name="t1" id="<%=al.indexOf(p)%>" style="background: #D8D8D8;"
onclick="radioselect(this.id);">
<%
}
%>
<td><input type="radio" id="ra<%=al.indexOf(p)%>" name="r" /></td>
<td><%=p.getUid()%></td>
<td><%=p.getUname()%></td>
<td><%=p.getUpassword()%></td>
<td><%=p.getUtype()%></td>
</tr>
<%
}
}
}
%>
</table>
</body>
</html>
输出:当我不点击任何行时
点击后输出
如何在突出显示所选行的同时保持交替行着色。
有没有一种方法可以“标记”对象的属性,使它们在反射中“突出”? 例如: class A { int aa, b; string s1, s2; public int AA
我是一名优秀的程序员,十分优秀!