2012-12-30 63 views
1

預先感謝您看看我的問題。當單獨div的類更改時更改跨文本 - jQuery

我有一個背景圖像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>"); 
     }); 

我試圖把跨度文本改變成觸發另一個功能,但我做了錯誤的太。

任何幫助,將不勝感激。

+0

什麼是你的標記是什麼樣子?跨度是div的孩子嗎? – jxpx777

+0

另外你在函數內部的第一行之後缺少分號。 –

+0

:::::::::::::::::::::: :)))))))))))))))))))Beauty) – dude

回答

1

把單引號括起來的SPAN <span style='color:red;'>

$('.rpLeftArm').click(function() {  
     $('.rpLeftArm').addClass("rpLeftArmActive"); 
     $('#currentStep').html("Pick up.... <span style='color: red;'>Keep your...</span>"); 
}); 
+0

有點代碼失明那裏!!謝謝:) – lauw0203

+1

@ lauw0203哦,沒問題:)謝謝!而不是'''你也可以使用'\「'來避免你的雙引號 –