日期:2014-05-16 浏览次数:20384 次
.hid {
display:none;
}
.xx {
width:12px;
height:12px;
}
$("#imgs img").mouseenter(function () {
var myself = $(this);
var xx = $("<img src='Images/imgs/xx.jpg' class='xx' />");
var top = $(this).offset().top;
var left = $(this).offset().left + $(this).width() - 12;
xx.css({ "position": "absolute", "top": top, "left": left, "display": "" });
$(document.body).append(xx);
$(".xx").click(function () {
myself.hide();
$("#imgs img").each(function () {
if ($(this).hasClass("hid")) {
$(this).removeClass("hid");
return false;
}
});
});
}).mouseleave(function () {
$(".xx").hide();
});
<div style="float: left;" id="imgs">
<img src="Images/hotel/hp.jpg" style="width: 130px; height: 90px; margin-left: 30px; margin-top: 20px;" />
<img src="Images/hotel/hp2.jpg" sty