有没有用什么控件?
或用JS添加也行的
没有特殊要求,用什么方法都可以,只要能做出来。
@求解=: Demo:
<!DOCTYPE html>
<html>
<head>
<title>Demo</title>
<meta charset="utf-8"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<style type="text/css">
td{
border:1px solid #CCC;
padding:10px;
}
table{
border-collapse:collapse;
}
</style>
<script type="text/javascript">
function addLink(){
$("#tb tr td:nth-child(2)").each(function(index,item){
if(index>0){
$(item).html("<a href='http://www.cnblogs.com' target='_blank'>"+$(item).text()+"<a>")
}
});
}
</script>
</head>
<body>
<table id="tb">
<tr>
<td>时间</td><td>数量</td>
</tr>
<tr>
<td>2012-3-31</td><td>2</td>
</tr>
<tr>
<td>2012-3-31</td><td>2</td>
</tr>
<tr>
<td>2012-3-31</td><td>2</td>
</tr>
<tr>
<td>2012-3-31</td><td>2</td>
</tr>
<tr>
<td>2012-3-31</td><td>2</td>
</tr>
</table>
<input type="button" onclick="addLink()" value="Add Link">
</body>
</html>
在线演示:http://jscode.chinacxy.com/code/36e8221847c372dd09113ad2acd94505.aspx
@artwl: 这个是不是只能在一个页面中执行,如果在母板页中的话会不会成功呢?因为我嵌套了母板页,显示失败。
@求解=: 关键是这个选择器的运行 #tb tr td:nth-child(2)
你根据你的页面改一下就可以了
@artwl: 这个我是根据我的页面来的。nth-child(2)是表示表格的第二列啦。
@求解=: 对,关键是 #tb tr td 这一部分是否正确?
@artwl: 是正确的啊,#tb是表格的id啦。
@求解=: 你的页面生成后的HTML代码是什么样的?
@artwl: 谢谢!现在已经解决啦!