我有下面的代碼在我的遺產項目在JSP模擬href點擊javascript功能?
<tr>
<th colspan="2">Customer</th>
<td colspan="2">
<a href="myAction.do" target="view">CustomerLink</a></td>
</tr>
我想在行爲稍加修改,當我們點擊CustomerLink。我只想在進行操作之前在javascript函數中做一些處理。 我沒有得到如何模擬javascript函數中的href鏈接行爲?
我試過了什麼: -
<tr>
<th colspan="2">Customer</th>
<td colspan="2">
<a href="javascript:customerLinkClicked('myAction.do')" target="view">CustomerLink</a></td>
</tr>
// javascript函數
function customerLinkClicked(path)
{
// simulate the href link behaviour, not sure how to do this
}