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 回答