纯粹记录

鼠标移入和移开黄金搭配
onmouseenter 当用户将鼠标指针移动到对象内时触发。

onmouseleave 当用户将鼠标指针移出对象边界时触发。

$('#xx').hover(function(){
    	$('#show1').show();
    },function(){
    	$('#show1').hide();
    });



相对于父标签的坐标系
$(selector).position().top
$(selector).position().left

你可能感兴趣的:(XHTML)