0

我有一种图像轮播,它会在悬停时自动将图像缩略图与大图像标题交换。这是完美的工作,但现在我意识到我想为当前显示的每个拇指添加一些指示。我以为我可以应用 div.container img.current 并给它一些属性,值..但它没有用。

所以我想我可以向大家请教一个有效的快速解决方案。

这是我的代码

<div class="container-thumbs">

<div class="big-image-thumbnail">

<a href=".html"onmouseover="document.getElementById('bigImage').src='.jpg'">

<img src=".jpg" /></a><p>Title</p>

</div>
4

1 回答 1

1

使用 j-query toggleClass() 函数

这是一个例子

<head>

<style>

p { margin: 4px; font-size:16px; font-weight:bolder;

cursor:pointer; }

.blue { color:blue; }

.highlight { background:yellow; }
</style>
 <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>

<body>

  <p class="blue">Click to toggle</p>

  <p class="blue">highlight</p>

  <p class="blue">on these</p>

  <p class="blue">paragraphs</p>

<script>

   $("p").click(function () {

   $(this).toggleClass("highlight");

});

 </script>

</body>
于 2012-11-30T10:31:19.317 回答