アンカータグをクリックすると、「anotherDiv」が表示されます。隠しテキストを取り出してdivタグ内に配置
jQueryを使用して、アンカータグの各li onClick内に説明を取得し、アンカータグのonClickにも表示される「anotherDiv」領域に挿入できるようにします。説明テキストは、最初にnoneを表示するように設定されています。
<style>
.desc{
display:none;
}
#anotherDiv{
display: none;
}
</style>
<li style="overflow: hidden; float: none; width: 158px; height: 125px;">
<a onClick="return addPlayer(952541791001, 661361792001, 600, 320)" id="no8" class="video-pop">
<img width="132" height="75" alt="" src="image.jpg">
</a>
<div class="label">The label goes here......</div>
<div class="desc">The description goes here.....</div>
</li>
<li style="overflow: hidden; float: none; width: 158px; height: 125px;">
<a onClick="return addPlayer(952541791001, 661361792001, 600, 320)" id="no10" class="video-pop">
<img width="132" height="75" alt="" src="image.jpg">
</a>
<div class="label">The label goes here......</div>
<div class="desc">The description goes here.....</div>
</li>
-------------------------------------------------------------
<div id="anotherDiv"></div>
! – neelmeg
答えにコードを投稿してください。そうすれば、将来の訪問者はあなたの知識から利益を得ることができます。 – mrtsherman