单独的div类更改时更改跨度文本 - jQuery

时间:2012-12-30 23:26:53

标签: jquery html addclass

提前感谢您查看我的问题。

我有一个带背景图片的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>");
        });

我已经尝试将范围文本更改为另一个触发的功能,但我也做错了。

任何帮助都将不胜感激。

1 个答案:

答案 0 :(得分:1)

在您的SPAN <span style='color:red;'>

周围加上单引号
$('.rpLeftArm').click(function () {    
      $('.rpLeftArm').addClass("rpLeftArmActive");
      $('#currentStep').html("Pick up.... <span style='color: red;'>Keep your...</span>");
});