我想在「文本」懸停時將光標更改爲指針,因爲它鏈接到彈出窗口而不是鏈接,並且我想要在鏈接之間「隱藏」它。有沒有辦法?懸停文本時更改光標
<a onclick="myFunction()">Text</a>
<script>
function myFunction()
{
alert("pop-up text");
}
</script>
感謝
我想在「文本」懸停時將光標更改爲指針,因爲它鏈接到彈出窗口而不是鏈接,並且我想要在鏈接之間「隱藏」它。有沒有辦法?懸停文本時更改光標
<a onclick="myFunction()">Text</a>
<script>
function myFunction()
{
alert("pop-up text");
}
</script>
感謝
只需設置一個css規則:
HTML:
<a class=someRelevantClass onclick="myFunction()">Text</a>
CSS:
a.someRelevantClass {
cursor: pointer;
}
使用CSS:
a{
cursor: pointer;
}
如果你希望它不要放在具體項目的指針,你可以使用:not
僞類與class="not-a-link"
匹配錨:
a:not(.not-a-link){
cursor: pointer;
}
:懸停沒有意義 –
我試過了,它工作。非常感謝你 :) – Powerofspeed