_____SK_____
@_____SK_____

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

addClassが効かない

jsのaddClassが効きません。

let music = new Audio("ファイルパス");
$("p").click(function(){
    if($(this).hasClass("play")){
        music.pause();
        $(this).removeClass("play").addClass("stop").text("play");
    }else{
        music.play();
        $(this).rmoveClass("stop").addClass("play").text("stop");
    }
})
0

No Answers yet.

Your answer might help someone💌