Making a Table Row clickable

前端 未结 14 991
悲&欢浪女
悲&欢浪女 2020-12-24 12:49

I wonder what the best way to make an entire tr clickable would be?

The most common (and only?) solution seems to be using JavaScript, by using onclick=\"javascript:

14条回答
  •  一生所求
    2020-12-24 13:10

    It's a hack but you can add this to your tr:

    onmouseover="window.status='http://bla.com/bla.htm'" 
    

    don't forget to style your fake links:

    tr.clickable {
        cursor: hand; 
        cursor: pointer;
    }
    

提交回复
热议问题