我想再次检查索引值。但对我来说,我的代码只能成功一次
$(function() {
$('.tree').on("click", 'a',function(e) {
var top = $(this).closest('tr').index()
var cont = $(this).closest('tr').html()
// alert(cont)
if ( top === 1) {
alert('it is top')
return false
top = $(this).index()
} else {
$(this).closest('tr').empty()
$('.second').before('<tr class="tree">'+ cont + '</tr>')
top = $(this).index()
}
})
})
我把代码放在 jsfiddle 上:http: //jsfiddle.net/Jackyhua/gjypb/ 也许我需要“for”才能让它工作。