我正在使用 jQuery 来显示或隐藏跨度。但我希望它<div>
出现在与我单击的链接相同的位置。当前代码实际上<div>
在屏幕左侧显示了标签。这是我正在使用的代码。
<script>
$(document).ready(function(){
$(".slidingDiv").hide();
$(".show_hide").show();
$('.show_hide').click(function(){
$(".slidingDiv").slideToggle();
return false;
});
$(".slidingDiv1").hide();
$(".show_hide1").show();
$('.show_hide1').click(function(){
$(".slidingDiv1").slideToggle();
return false;
});
});
</script>
跨度标签:
<span>
<a href="#" class="show_hide">Japan</a>
<span class="slidingDiv">
<img src="02-1 ImageFiles/01 Japan.JPG" style="width:235px; height:245px;">
<a href="#" class="show_hide">Close</a>
</span>
is made up of islands, regions, prefectures (government districts), cities, and surrounding communities. The main island, Honshu, has thirty-four prefectures making up five regions. The
<a class="show_hide1" href="#">Tōhoku Region</a>
<span class="slidingDiv1">
<img src="02-1 ImageFiles/02 TohokuRegion.JPG" style="width:217px; height:236px;">
<a href="#" class="show_hide1">Close</a>
</span>