この質問はすでに行われていると思いますが、グーグルにフィードするのに適したキーワードが見つかりません。質問にぴったりのタイトルすら見つかりません。私はこれをしたい:
$(".selector").click(function() {
$(this).css("background-color", "red");
if (confirm("Do you want to do this ?") {
// do this
} else {
$(this).css("background-color", "transparent");
}
});
しかし、cssの変更は、確認した後でのみ実行されます。確認前(または確認中)に起動するにはどうすればよいですか?
ありがとう。