var box=$('#player')[0]; 
//alert(box.style.height); 
if($('.content')[0].style.width=="auto"){ 
$('.content')[0].style.width=""; 
box.style.height=""; 
$('.pop').show(); 
$('.navigation').show(); 
document.body.parentNode.style.overflow="auto"; 
}else{ 
var box=$('#player')[0]; 
$('.content')[0].style.width="auto"; 
box.style.height=toggleFullScreen.windowHeight()+"px"; 
$('.pop').hide(); 
$('.navigation').hide(); 
document.body.parentNode.style.overflow="hidden"; 
} 请问这段代码里的 
$('#player')[0] 
$('.content')[0] 
$('.navigation')