最佳答案
当用户将鼠标悬停在某个字段上时,我使用这个小巧的 JavaScript 来突出显示该字段。你能告诉我,如果有一个方法,添加一个 onclick
函数,将作为一个链接,到一个网址?
<script>
$(function() {
$('tr').hover(function() {
$(this).css('background-color', '#eee');
$(this).contents('td').css({'border': '0px solid red', 'border-left': 'none', 'border-right': 'none'});
$(this).contents('td:first').css('border-left', '0px solid red');
$(this).contents('td:last').css('border-right', '0px solid red');
},
function() {
$(this).css('background-color', '#FFFFFF');
$(this).contents('td').css('border', 'none');
$('a#read_message.php').click(function(){ URL(); });
});
});
</script>