2015-09-28 37 views

回答

0
$('span:contains("VALUE")').each(function() { 
    var text = $(this).text(); 
    var number = text.split('-'); 
    console.log(number[1]); 
}); 

DEMO

斯普利特文本分區,並獲得第二值,因爲它是與價值number.and第二的指數是1

0

this引用元素的對象。使用.html().text()與它一起

$('*:contains("VALUE")').each(function(){ 
    console.log($(this).text()); 
});