假設我有一個觸發一些javascript的標籤。例如:什麼是觸發javascript的鏈接的最佳做法
HTML:
<a href="#" id="some_id">Trigger action!</a>
<!-- or, with appripriate CSS : -->
<span id="some_other_id">Trigger action!</span>
的jQuery:
$("#some_id").click(function() {
alert("some action")
});
我最好如何做到這一點?
我的問題是當我懸停在鏈接上時,我應該在瀏覽器的左下角看到什麼?即什麼是href值應該是?
如果響應是'無',那麼正確的方法是跨度。
的一些方法,例如:http://jsfiddle.net/M3qkU/5/
'' is OK, StackOverflow uses them for instance for the "flag" and "close" buttons bellow your question. –