到目前为止,这将是我的第一个问题,因为我总是在使用论坛之前进行研究,但我没有得到这个工作。
我有一个用作切换动画按钮的图像(button.png),我希望该图像在单击另一个图像(button2.png)后更改,一旦单击第二个图像,它就会再次更改为第一张图片,我有:
<script type="text/javascript">
$(document).ready(function() {
// when click on the tag with id="btn"
$('#btn').click(function() {
// change the state of the "#idd"
$('#idd').toggle(800, function() {
// change the button text according to the state of the "#idd"
if ($('#idd').is(':visible')) {
$('#btn').attr('images/button2.png', this.href); // Show Less.. button
} else {
$('#btn').attr('images/button.png', this.href); //Learn More.. button
}
});
});
});
</script>
和我的 HTML:
<div id="idd" style="display:none;">
- Here my hidden content -
</div>
<!-- Button -->
<img src="images/button.png" style="cursor: pointer;" id="btn">
我做错了什么?请帮忙 :(