2017-03-23 19 views

答えて

2

が見えます。あなたは

$(this).text($(this).text() == 'Read More' ? 'Read Less' : 'Read More'); 

を示すコードが

if($(this).text() == 'Read More') { 
    $(this).text('Read Less'); 
}else { 
    $(this).text('Read More'); 
} 
に等しく、
関連する問題