gpt4 book ai didi

javascript - document.getElementById ('ID' ).style.cursor 没有按预期工作

转载 作者:行者123 更新时间:2023-11-28 05:16:08 25 4
gpt4 key购买 nike

为什么 if 语句在这里不起作用:

<!DOCTYPE html>
<html>
<body>

<style>#myP{cursor:pointer;}</style>

<p id="myP">random text</p>
<button type="button" onclick="myFunction()">alert aaa</button>

<script>
function myFunction(){
if(document.getElementById("myP").style.cursor=="pointer"){
alert("aaa");
}
}
</script>

</body>
</html>

此外,我想知道如何使 if 语句与链接游标一起工作,例如:

<style>#myP{cursor: url(../randomFolder/cursor.png) 5 8, auto;}</style>

最佳答案

改用这个:
if (window.getComputedStyle(document.getElementsByTagName('body')[0]).cursor == 'pointer')

关于javascript - document.getElementById ('ID' ).style.cursor 没有按预期工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45533328/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com