首頁  >  文章  >  web前端  >  jsp網頁搜尋結果中實作選取一行使其高亮_javascript技巧

jsp網頁搜尋結果中實作選取一行使其高亮_javascript技巧

WBOY
WBOY原創
2016-05-16 16:59:531551瀏覽

當我做搜尋結果時,為了好看需要將選取的行變的高亮些,我使用了一個onclick 事件:

複製程式碼 程式碼如下:

var assno="";
function check(obj,che,rwid){
if(obj.checked==true){
document.getElementById(rwid).style.background ="blue";
assno=document.getElementById(che).value;
alert(assno);
}
}

這是網頁中動態產生的html程式碼:
複製程式碼 程式碼如下:

out.println(" ");

out.println("" Info.getAssetsNo() "");
out.println("" Info.getSerialNo() " td>");
out.println(" " Info.getAssetsName() "");
out.println("" Info.getAssetsClass() "");
out.println("" Info.getCgTime() "") ;
out.println("" Info.getGbTime() "");
out.println("" Info.getConfigInfo() "");
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn