タイトルがクリックされたときにコンテンツがポップアップするようにトリガーしようとしています。関数は次のとおりです。
<script type="text/javascript">
jQuery(document).ready(function($){
$(".event-info").hide(); // make sure all content in event-info class is hidden
$(".event-title").click(function(){
// find the .event-info within the same div as .event-title is and slide to show
$(".event-info").hide(); $(this).parent().children(".event- info").toggle("slide", {direction: "up"}, 500); })
});
</script>
私の問題は、実行時に一度だけ実行されることです! タイトルをクリックするとコンテンツがポップアップし、もう一度クリックすると閉じます。しかし、コンテンツをポップアップ表示するために 3 回クリックしても機能しません。だから私が求めているのは、コンテンツを好きなだけポップアップできるようにするには、この機能に何を追加/削除する必要があるかということです。
ありがとう!
アップデート!
HTMLは次のとおりです。
<html>
<div class="event-title"> Title that triggers content to appear is here </div>
<div class="event-info"> Content that appears is placed here</div>
</html>
***アップデート
わかりましたので、Aiias がそれを手に入れるのを手伝ってくれたので、コンテンツを無限に開いたり閉じたりできるようになりました。
jQuery(document).ready(function($) {
$(".event-info").hide();
$(".event-title").click(function() {
$(this).parent().children(".event-info").slideToggle(500);
});
});
すべてが機能しています!みんなありがとう!とても助かりました!