ฉันใช้ JavaScript เล็ก ๆ ที่น่าสนใจนี้เพื่อเน้นฟิลด์ในขณะที่ผู้ใช้วางเมาส์เหนือ คุณช่วยบอกฉันได้ไหมว่ามีวิธีเพิ่มonclick
ฟังก์ชันที่จะทำหน้าที่เป็นลิงค์และไปที่ URL หรือไม่?
<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>