$(function(){
$("#purchases li").each(function(i,item){
$( item ).css( "backgroundColor", "yellow" );
if ( $(this).is( "#stop" ) ) {
alert($(this).text())
$( ".span" ).text( $(this).text() + "我的索引是:"+ i );
return false;
}
})
})
$("#purchases li").each(function(i,item){
$( item ).css( "backgroundColor", "yellow" );
if ( $(this).is( "#stop" ) ) {
alert($(this).text())
$( ".span" ).text( $(this).text() + "我的索引是:"+ i );
return false;
}
})
})