代码如下:
<script>
//js放到table下,才能检测到tr数组
var trs = documentgetElementById("tableBox")getElementsByTagName("tr");
var trs=documentgetElementById("tableBox")getElementsByTagName("tr");
$(function(){
for(var i=0;i<trslength;i++){
trs[i]onmousedown = function(){
mousedownclick(this);
}
}
});
function mousedownclick(obj){
for(var j=0;j<trslength;j++){
if(trs[j]==obj){
trs[j]stylebackground='blue';
}else{
trs[j]stylebackground='';
}
}
}
</script>
扩展资料
js *** 作table的各种用法:
(1)得到table 中tbody 的内容 :$('#simple-table')find('tbody')html();
(2)点击td时,获取点击的行号:
$('#simple-table tbody')on( 'click', 'td', function (e) {
normalRowIndex = $(this)parent()index(); //行号
consolelog("正常工作表行:"+normalRowIndex);
});
(3)为table追加一行:
function addNormalTR(){
$('#simple-table')find('tbody')append(trtd); //tdtd为拼接的trtd 的html内容。
}
(4) 点击td中的元素获取,当前行号: objparentNodeparentNoderowIndex;//obj 为元素对象
/web-inf/tld/trswastldprefix=trs%<html<head<meta>
有文章回收站的,可以从里面恢复
如果回收站里面都没有的话
看看数据库吧(一般是也是会没掉,不过运气好的话,说不定还在)
一般服务器的数据都定期备份的,可以从备份数据中恢复
用数组太庞大了 直接写一段程序更新就是了
<%
set trs=connexecute("select from 表a")
if not trseof then
do while not trseof
aa = trs("username")
set trs2 = connexecute("select id from 表b where username='"&aa&"'")
if not trseof then
id = trs2("id")
else
id = 0
end if
connexecute("update 表a set userid="& id &" where id="&trs("id"))
trsmovenext
loop
end if
%>
以上就是关于JS控制table特定tr的背景颜色全部的内容,包括:JS控制table特定tr的背景颜色、怎样在html中调用js函数!!的解决方案列表、TRS WCM删除的文章是否可以恢复等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)