我正在使用投票按鈕。Javascript/Onclick - 鼠標移動時鼠標指針
該按鈕是一個簡單的鏈接,但搜索引擎蜘蛛爬行頁面並觸發虛假投票。所以,我把它改成了onclick來停止。
但是,這樣做後,按鈕仍然工作正常,但鼠標光標不再有'手'指針。當你鼠標懸停時,它仍然是箭頭指針,所以很難說它是一個實際運行的鏈接。爲了解決這個問題,我添加了一個style =「cursor:default;」,我也嘗試過style =「cursor:crosshair;」嘗試更改遊標行爲,但它不起作用。光標始終保持指針。
這裏是我的代碼:
<map id="vote_buttons" name="vote_buttons">
<area shape="rect" alt="" coords="5,3,78,43" onClick="window.location='http://www.site.com/page.php?vote=Y'" style="cursor:default;" title="" />
<area shape="rect" alt="" coords="83,3,160,44" onClick="window.location='http://www.site.com/page.php?vote=N'" style="cursor:pointer;" title="" />
<area shape="default" nohref="nohref" alt="" />
</map>
缺少什麼我在這裏,使這個鼠標懸停看起來像一隻手?
一如既往地提前致謝。
嘗試'光標:指針;' – 2013-02-28 23:42:47
我有光標:指針;在我上面的例子中。我使用不正確? – Kevin 2013-02-28 23:47:37