我正在尋找一些使用jQuery手風琴的幫助。jQuery手風琴不適用於我
基本上,我的元素不是標準的h3和p標籤,它需要開箱即用。
jQuery的,我有如下
<script>
jQuery(document).ready(function() {
jQuery("#contentHolder").accordion({
header: '.clicker'
});
});
</script>
和即時通訊使用的是如下的HTML:
<div id="contentHolder">
<div id="recipe">
<img src="style/img/rec-image.jpg"></img>
<p><span style="color: #5C971C; font-weight: bold;">Stuffs M</span><br />stuff goes here</p>
<p><a class="clicker" href="#"><img src="style/img/details-btn.jpg"></img></a></p>
<div class="ingredients" style="margin-top: 136px;">
<p style="width: 420px;"><span style="color: #5C971C; font-weight: bold;">Ingredients</span><br />2L white vinegar<br />2 cups water</p>
</div>
</div>
<div id="recipe">
<img src="style/img/rec-image.jpg"></img>
<p><span style="color: #5C971C; font-weight: bold;">Stuffs M</span><br />stuff goes here</p>
<p><a class="clicker" href="#"><img src="style/img/details-btn.jpg"></img></a></p>
<div class="ingredients" style="margin-top: 136px;">
<p style="width: 420px;"><span style="color: #5C971C; font-weight: bold;">Ingredients</span><br />2L white vinegar<br />2 cups water</p>
</div>
</div>
</div>
如何我希望它的工作,是當有人點擊.clicker href我想div的「成分」上下滑動。
IM希望有人能幫助:)
乾杯,
您的標記無效。可能不會有太大變化,但它總是有更好更清潔的有效標記。 (例如'img'標籤:就像''不是''。您也有多個具有相同ID的元素。) –