我已經包含2個鏈接的表格,表有兩個環節 - 錶行點擊 - jQuery的
如果我點擊「按鈕」的鏈接應該針對「第1頁」
如果我點擊整個行應該目標'page2'
我目前堅持與jQuery的Javascript - 有人可以給我一個建議嗎?
HTML &的JQuery/JS
<tr>
<td><a href="page2.html" class="info"><img src="img/img.png" alt="image" class="tlogo"/></a></td>
<td>Some Text</td>
<td><a href="page1.html" class="tbutton">Go to page1</a></td>
</tr>
$(document).ready(function() {
$('#myTable tr').click(function() {
var href = $(this).find("a").attr("href");
if(href) {
window.location = href;
}
});
});
++ 1'event.stopPropogation'確實見下面我的職務演示。 ':'' –