2014-02-25 114 views
0

我想在「文本」懸停時將光標更改爲指針,因爲它鏈接到彈出窗口而不是鏈接,並且我想要在鏈接之間「隱藏」它。有沒有辦法?懸停文本時更改光標

<a onclick="myFunction()">Text</a> 
<script> 
function myFunction() 
{ 
alert("pop-up text"); 
} 
</script> 

感謝

回答

2

只需設置一個css規則:

HTML:

<a class=someRelevantClass onclick="myFunction()">Text</a> 

CSS:

a.someRelevantClass { 
    cursor: pointer; 
} 

the available cursors in the MDN

+0

我試過了,它工作。非常感謝你 :) – Powerofspeed

1

使用CSS:

a{ 
    cursor: pointer; 
} 

如果你希望它不要放在具體項目的指針,你可以使用:not僞類與class="not-a-link"匹配錨:

a:not(.not-a-link){ 
    cursor: pointer; 
} 
+2

:懸停沒有意義 –