最好的解决方案可能是完全忽略您的锚点,而是将点击事件添加到行(或者,更好的是,添加到表中并检测目标)。使用 CSS,您可以更改光标以指示链接。
PHP:
echo '<table id="yourTable">';
while ($row = mysql_fetch_array($result))
{
echo '<tr class="record" data-id="'.$row['id'].'">';
echo '<td>'.$row['company'].'</td>';
echo '<td>'.$row['project'].'</td>';
echo '<td>'.$row['assignee'].'</td>';
echo '<td>'.$row['current_milestone'].'</td>';
echo '<td>'.$date=date("d-m-Y", strtotime($row['start_date'])).'</td>';
// etc.
echo '</tr>'
}
echo '</table>';
JavaScript:
var table = document.getElementById('yourTable');
table.onclick = function(e)
{
e = e || window.event;
var target = e.target || e.srcElement,
id;
if (target.tagName === 'TD')
{
target = target.parentNode;
}
if (target.tagName === 'TR' && target.className === 'record')
{
window.open('update.php?id=' + id, 'updateWindow');
}
}
CSS:
tr
{
cursor: pointer;
}
td
{
height: 70px;
}