我有一個包含相似類的多個實例的列。類爲refHeader1,refHeader2,refHeader3和ref1select,ref2select,ref3select和refScen1,refScen2,refScen3。以下,這些數字正在被@ {@ i}替代以動態驅動。我需要的是點擊(this)ref @ {@ i}選擇時,顯示最接近的refScen @ {@ i}跨度,並且refScen @ {@ i}跨度的所有其餘部分都被隱藏。到目前爲止,我已經嘗試了下面的jQuery,但沒有運氣。我究竟做錯了什麼?在控制檯中,當我試圖找到最接近的時候,我只是空的[]括號。提前致謝。 http://jsbin.com/ezODiTAV/1/edit使用jQuery動態查找和顯示特定的部分?
jQuery的
$("span[class*=select]").click(function() {
// first hide all refScen spans
$('span[class^=refScen]').hide();
// show this refScen span
//$(this).closest('span[class^=refScen]').show();
//$(this).find().closest('span[class^=refScen]').show();
//$(this).find().next('span[class^=refScen]').show();
});
HTML
<div class="col-md-12 padT nPadL nPadR" style="padding-bottom:10px">
<span class='[email protected]{@i}'>
<a href="#"><label>@item.Name</label></a>
<div class="glyphicon glyphicon-chevron-down text-right [email protected]{@i}select"></div>
</span>
</div>
<!-- /left options -->
<span class='[email protected]{@i}'>
<div class="col-md-9 col-md-offset-3 padB nPadL nPadR">
<a href="#">@listitem.Name</a>
</div>
</span>
我沒有看到任何含有術語'select'的類的跨度,我看到一個div –
嘗試http://jsfiddle.net/arunpjohny/6MA9X/5/ –