1

私の質問をご覧いただきありがとうございます。

背景画像のある div があり、クリックすると、この画像を変更する別のクラスを追加しています。

また、この div をクリックしたときにスパン内のテキストを変更したいと考えています。

以下で試しましたが、クラスの追加が停止しました:

$('.rpLeftArm').click(function () {

            $('.rpLeftArm').addClass("rpLeftArmActive")
            $('#currentStep').html("Pick up the hand furthest away from you and place the back of their hand onto their opposite cheek. <span style="color: Red;">Keep your hand there to guide and support their head as you roll them.</span>");
        });

スパンテキストの変更を、トリガーされる別の関数に入れようとしましたが、それも間違っています。

どんな助けでも大歓迎です。

4

1 に答える 1

1

SPAN を一重引用符で囲みます<span style='color:red;'>

$('.rpLeftArm').click(function () {    
      $('.rpLeftArm').addClass("rpLeftArmActive");
      $('#currentStep').html("Pick up.... <span style='color: red;'>Keep your...</span>");
});
于 2012-12-30T23:35:28.443 に答える