こんにちは<a>
、タグを 1 つ取得し、ホバーすると別の div が開きます。タグの下に、表示される他のdivを取得しました。しかし、マウスを<a>
タグに合わせると、他のdivが開きますが、<a>
タグの下の通常のdivは場所が変わり、下に移動しました。タグのホバーで<a>
新しいdivが開きますが、通常のdivはその位置を変更しないでください。新しい div を開くか、既存の div に表示する必要があります。
私のコード:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Reading Image</title>
<style type="text/css">
.testtmpblock{
display: none;
background-color:black;
min-height: 100px;
width: 200px;
}
.tmpd{
height: 100px;
width: 100px;
background-color: blue;
}
.tt{
height: 120px;
width: 100px;
background-color: fuchsia;
position: fixed;display: block;
}
</style>
<script src="jquery.min.js" type="text/javascript"></script>
<script>
$(document).ready(function () {
$(document).on('mouseenter', '.cart', function () {
$(this).next(".testtmpblock").show();
}).on('mouseleave', '.cart', function () {
$(this).next(".testtmpblock").hide();
});
});
</script>
</head>
<body>
<a href="#" class="cart"> Cart </a><div class="testtmpblock"></div>
<div class="tt">hello</div>
</body>
</html>
そうするための提案はありますか?