我在<p>
tag和如果Iclick
。 <代码>mg or the <p>
, 它需要toggled<>/code> and the img should
changed
。
I have done it by adding
jQuery(this).attr("src", "img/hide.png");
but the img is not changing can any one suggest me the right path.
这里是我的文字:
<script type="text/javascript">
jQuery(document).ready(function () {
jQuery(".content").hide();
//toggle the componenet with class msg_body
jQuery(".heading").click(function () {
jQuery(this).next(".content").slideToggle(500);
});
});
</script>
这是我的安保部:
.layer1 {
margin: -5px;
padding: 0px;
width: 860px;
}
这是我的标志:
<div class="layer1">
<p class="heading"><img src="img/show.png" alt="" style="margin:0 5px 0 0;" /></p>
<div class="content"></div>
<p class="heading"><img src="img/show.png" alt="" style="margin:0 5px 0 0;" /></p>
<div class="content"></div>
<p class="heading"><img src="img/show.png" alt="" style="margin:0 5px 0 0;" /></p>
<div class="content"></div>
<p class="heading"><img src="img/show.png" alt="" style="margin:0 5px 0 0;" /></p>
<div class="content"></div>
<p class="heading"><img src="img/show.png" alt="" style="margin:0 5px 0 0;" /></p>
<div class="content"></div>
</div>