Jquery中使用某个关键字进行查询时,table里面相关文字颜色变化

10 篇文章 0 订阅
9 篇文章 0 订阅
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Table word Color Change</title>

<script language="javascript" type="text/javascript" src="jquery-1.3.1.js"></script>

<script type="text/javascript">

$(document).ready(function() {
var i = 0;
//在文本框中输入文字时,按下Enter键
$("#txtc1").keydown(function(e) {
var curKey = e.which;
//如果curKey等13时,说明是Enter键
if (curKey == 13) {
var txtQuery = $("#txtc1").val();
if (i >= 1) {
var Qt = txtQuery;
txtQuery = Qt;
$("#TT").load();

}
//判断是否为空
if (txtQuery == "") {
alert("不能为空,请输入");
return;
}
else {
//全文查找出现的所有txtQuery
var reg = new RegExp(txtQuery,'g');
//循环遍历整个table中td
$("td").each(function() {
//获取整个table内容
var bb = $(this).html();
//匹配整个
var cc = bb.replace(reg, '<span style="color:#F00">' + txtQuery + '</span>');
$(this).html(cc);
});
i++;
}
}
});
});
</script>

<style type="text/css">
.style1
{
height: 23px;
}
.style2
{
height: 25px;
}
body
{
margin: 0;
padding: 40px;
background: #fff;
font: 80% Arial, Helvetica, sans-serif;
color: #555;
line-height: 180%;
}
</style>
</head>
<body>
<input type="text" id="txtc1" />
<table width="100%" class="get1" style="border-color: Blue; border-style: groove" id="TT">
<tr>
<td class="style2">
1
</td>
<td class="style2">
2
</td>
<td class="style2">
3
</td>
</tr>
<tr>
<td class="style1">
3
</td>
<td class="style1">
3
</td>
<td class="style1">
4
</td>
</tr>
</table>
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值