$("a").mouseenter(function () {
var setx = this.offsetLeft;
var sety = this.offsetTop;
//alert(setx + "," + sety);
$("#showd").css({
'top': sety + 20 + 'px',
'left': setx + 50 + 'px',
'position': 'absolute',
'background': 'gray'
}).show();
});
$("#showd").mouseout(function () {
$(this).hide();
});
$("#showd").click(function () {
alert("可以了");
});
});