私のページには、以下のようなリストがあります。
<li class="select">
<div class="type"><span class="icon_word_small bgpos"></span></div>
<div class="docu"> <span class="fade"><a href="">Study on Clinical Research Market in AMEA</a> / 24 July 2011</span></div>
<div class="colu"> <span class="fade"><a href="">Fairleign</a>, <a href="">Felder</a> & 2 more</span></div>
<div class="status"><span class="fade"><span class="dark">Public</span> [2 Views 1 Downloads]</span></div>
<div class="data_options"><a href="#" class="itemDelete">DELETE</a> </div> <!-- row hover options here-->
<!-- popup starts here-->
<div class="data_popup data_delete"><span class="tip"></span>Are you sure want to delete this file?
<div class="cfix"></div>
<ul>
<li><a href="#" class="deletebutton"></a></li>
<li><a href="">No,Keep this file</a></li>
</ul>
</div>
<!-- popup ends here-->
<div class="cfix"></div>
</li>
<li>
<div class="type"><span class="icon_word_small bgpos"></span></div>
<div class="docu"> <span class="fade"><a href="">Study on Clinical Research Market in AMEA</a> / 24 July 2011</span></div>
<div class="colu"> <span class="fade"><a href="">Fairleign</a>, <a href="">Felder</a> & 2 more</span></div>
<div class="status"><span class="fade"><span class="dark">Public</span> [2 Views 1 Downloads]</span></div>
<div class="data_options"><a href="#" class="itemShare">SHARE</a></div> <!-- row hover options here-->
<!-- popup starts here-->
<div class="data_popup data_share"><span class="tip"></span><h3>Share</h3>
<br>
<p> <input type="checkbox" /> All in our Company</p>
<p> <input type="checkbox" /> All in Department</p>
<p> <input type="checkbox" id="sharetick"/> Shared with Specific People</p>
<div id="textareamsg1"><p><textarea class="resizable" id=""></textarea></p> </div>
<p> <input type="checkbox" id="nonsharetick"/> Do not share with specific people</p>
<div id="textareamsg2"><p><textarea class="resizable dark" name="textarea" id="" placeholder="Type names to share document, to share with
many seperate names with commas"></textarea></p></div>
<div class="cfix"></div>
<ul>
<li><a href="#" class="okbutton"></a></li>
<li><a href="">Cancel</a></li>
</ul>
</div>
<!-- popup ends here-->
<div class="cfix"></div>
</li>
これを使用してdiv.dataDelete、itemShareを表示/非表示にします
$('.itemDelete').live('click', function() {
$(this).closest("li").find('.data_delete').slideToggle('medium');
});
$('.itemShare').live('click', function() {
$(this).closest("li").find('.data_delete').slideToggle('medium');
});
他のリンクをクリックすると、開いている他のすべてのdiv(itemDeleteとitemShareの両方)を非表示にする必要があります。また、上記のコードにも疑問があります。私のクライアントはそれが時々2回トグルしていると言います..私はどのブラウザでもそれを経験しませんでした。上記のコードでこれが発生する可能性はありますか、それとも彼はそれを間違ってコーディングしていますか?