//jquery方式
$("#table tr").click{function(){ //选择器写法
location.href="www.csdn.net";//注意location.href
}}
$("#table").find("tr").click{}
$("#table").find("tr").length{}
$("#table tr").length{}
//原生js
document.getElementById("#table").getElementsByTagName("tr").length
//注意要把js代码写在body后面;也就是说,先让body元素加载进来,才能取到值
//否则会报错:document.getElementById("id") is null
//注意连写
//直接在tr标签中添加onclick
<tr οnclick="window.location.href='/admin.php/Home/Brand/upMall/id/{$v.id}'"> //注意window.location.href=""
document.getElementById('table_id').getElementsByTagName('tr').length