这是jfiddle:http://jsfiddle.net/RHbzv/
我要做的是,当显示答案时,'查看更多'转变为“少看'但我似乎无法做到这一点。
我试过了:
$('.see_more').on('click', function(){
if ($(this).text() == 'See more'){
$(this).text('See less')
} else {
$(this).text('See more')
}
$('.answer').slideToggle('slow')
})
任何想法???
答案 0 :(得分:1)
$('.see_more').on('click', function(){
if ($(this).html() == 'See more'){
$(this).html('See less')
} else {
$(this).html('See more')
}
$('.answer').slideToggle('slow')
})