疑似リスト要素をクリックしてハイライトを表示する方法
1125 ワード
本明細書でいう「疑似リスト」とは、非標準的なリスト要素を水平または垂直に並べて、リストのように見えることを意味する.を例にとって
jspに以下のjsを挿入します.
jspに以下のjsを挿入します.
<script lang="javascript">
var lastItem = -1;
function focusedItem(itemid)
{
if(lastItem != -1 && lastItem != itemid)
{
document.getElementById(lastItem).style.backgroundImage="url(../../images/men.gif)";
}
document.getElementById(itemid).style.background="#40E0D0";
// document.getElementById(itemid).style.backgroundImage="url(../../images/button.jpg)";
lastItem = itemid;
}
</script>
呼び出し先: <td class="TDS" >
<a href="../../test.do?project=<%=p.getProjectid()%>" target="content" onclick="focusedItem(<%=i%>)" id="<%=i%>" /><%=pName%>
</td>
iは、循環文の自己増加要素である.