我有一個問題,我想用html表進行一些操作。我有兩個表, ,當我懸停第一行從表中,它應該突出兩個表中的行。兩個不同的html表格突出顯示相同的行順序
我發現一種解決方案,在使這種簡單函數:
<script type="text/javascript">
function matchrow(){
document.getElementById('row1').style.backgroundColor='#f5f5f5';
}
function unmatchrow(){
document.getElementById('row1').style.backgroundColor='white';
}
</script>
在第一表我有:
<tr onmouseover="matchrow()" onmouseout="dismatchrow()" >
在第二表I具有:
<tr id="row1" >
所以,當我把鼠標懸停在第一張表的第一行上時,第二張表中的第一行突出顯示。
我的問題是,如何使它爲每一行,特別是如果它將動態表。 希望我很清楚)
感謝您的好建議! – user2265174