之前的下法為
<span style="border:outset 1px;border-cursor:hand;width:50px;background-color:#000000;" onclick="location.href='http://judgehsu.blogspot.com/'"></span>
利用
cursor:hand 來呈現手指符號,但是在IE之外的就失效了
所以,現在要改成如下範例
<span style="border:outset 1px;border-cursor:pointer;width:50px;background-color:#000000;" onclick="location.href='http://judgehsu.blogspot.com/'"></span>
改為 cursor:pointer 的方式,這樣子就沒問題。