﻿$("#LiveDataShow").ready(function(){
     $('#bf_ss').click(function(){
	var findstr=$('#bf_collect').val();
	
	if(findstr.length==0){
	  return;
	}
	
   $('#Tableone > tbody >tr').each(function(){
	   var txt1=$(this).children(':nth-child(2)').text();
	   var txt2=$(this).children(':nth-child(5)').text();
	   var txt3=$(this).children(':nth-child(7)').text();
	   if(findstr==txt1||findstr==txt2||findstr==txt3){

		   $(this).children(':last-child').children(':first-child').click();
	   }	  
   }   
   );
   
    });
}
);

$(function(){
  
 $('#bf_collect').css("color","#cccccc");
 $('#bf_collect').click(function(){
	   $('#bf_collect').css("color","#333333");
	    if($('#bf_collect').attr("value")=="请输入赛事或球队"){
	      $('#bf_collect').attr('value','');
		 }
 });
 $('#bf_collect').blur(function(){
     if($('#bf_collect').val()==""){
		$('#bf_collect').attr("value","请输入赛事或球队");
	    $('#bf_collect').css("color","#cccccc");
	 }
 
 
 });

});


