7

我试图使用此代码在播放和暂停按钮之间切换,但它似乎不起作用。单击时如何在两个图像之间切换

http://jsfiddle.net/aFzG9/1/

$("#infoToggler").click(function()
{
    if($(this).html() == "<img src="http://tympanus.net/PausePlay/images/play.png" width="60px" height="60px"/>")
    {
        $(this).html("<img src="http://maraa.in/wp-content/uploads/2011/09/pause-in-times-of-conflict.png width="60px" height="60px"/>");
    }
    else
    {
        $(this).html("<img src="http://tympanus.net/PausePlay/images/play.png" width="60px" height="60px"/>");
    }
});

谢谢

4

4 回答 4

19

纯 HTML/CSS

label.tog > input {
  display: none; /* Hide the checkbox */
}

label.tog > input + span {
  text-indent: -9000px; /* Make text Accessible but not visible */
  display: inline-block;
  width: 24px;
  height: 24px;
  background: center / contain no-repeat url("//i.stack.imgur.com/gmP6V.png"); /*Play*/
}

label.tog > input:checked + span {
  background-image: url("//i.stack.imgur.com/ciXLl.png"); /*Pause*/
}
<label class="tog">
	  <input type="checkbox" checked>
	  <span>Button Play Pause</span>
</label>


使用 jQuery 切换内部跨度的图像

有用的原因是服务器没有新的请求来加载图像:

<span class="tog">
   <img src="play.png">
   <img src="pause.png" style="display:none;">
</span>

$(".tog").click(function(){
  $('img',this).toggle();
});

或者,假设我们有这个 HTML 和.tog图像选择器:

<img class="tog" src="play.png"/>

使用 Array.prototype.reverse()

var togSrc = [ "play.png", "pause.png" ];

$(".tog").click(function() {
   this.src =  togSrc.reverse()[0];
});

使用当前src值和String.prototype.match()

如果您不知道初始状态(播放?暂停?),这很有用

var togSrc = [ "play.png", "pause.png" ];

$(".tog").click(function() {
  this.src = togSrc[ this.src.match('play') ? 1 : 0 ];
});

注意:对于最后两个示例,您需要预先加载图像,以防止浏览器在从服务器请求和加载新图像时产生时间间隔。

于 2012-05-05T14:05:04.767 回答
18

处理它的另一种可能更简单的方法:

http://jsfiddle.net/M9QBb/1/

$("#infoToggler").click(function() {
    $(this).find('img').toggle();
});​

<div id="infoToggler">
  <img src="image1.png" width="60px" height="60px"/>
  <img src="image2.png" width="60px" height="60px" style="display:none"/>
</div>
于 2012-05-05T15:02:59.443 回答
2
<div id="infoToggler"><img src="http://tympanus.net/PausePlay/images/play.png" width="60px" height="60px"/></div>
$(document).ready(function(){
var src1 = "http://tympanus.net/PausePlay/images/play.png";
var src2 = "http://maraa.in/wp-content/uploads/2011/09/pause-in-times-of-conflict.png";
$("#infoToggler").click(function(){
   var src = $('#infoToggler img').attr('src'); 
   if(src == src1){$('#infoToggler img').attr('src',src2);}
   else{$('#infoToggler img').attr('src',src1);}
});

})​</p>

它的工作,我已经检查..

于 2012-05-05T14:10:25.303 回答
1

您可以使用该.toggle()功能。我已经更新了你的小提琴。此外,您没有在图像标签中正确地转义引号。

$("#infoToggler").toggle(function() {
    $(this).html('<img src="http://maraa.in/wp-content/uploads/2011/09/pause-in-times-of-conflict.png" width="60px" height="60px"/>');
}, function() {
    $(this).html('<img src="http://tympanus.net/PausePlay/images/play.png" width="60px" height="60px"/>');
});​
于 2012-05-05T14:03:12.077 回答