なぜif文はここで働いていません。また、のdocument.getElementById(「ID」)style.cursorが期待通りに動作しない
<!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>
DOM要素ノードの '.style'プロパティは、「スタイル」属性を介して要素に直接*コード化されたスタイルのみを含みます。 CSSによって適用されるスタイルへのアクセスは提供されません。その情報を取得するには、 'getComputedStyle()'のようなものを使用しなければなりません。 – Pointy
ありがとうございました。 –