gpt4 book ai didi

javascript - 当Wordpress中有多个事件类时,如何将事件类设置为选项卡?

转载 作者:行者123 更新时间:2023-12-03 03:18:04 31 4
gpt4 key购买 nike

是否有解决方案可以使 WordPress 中的自定义字段内容显示在相应的选项卡上?我对我的 li 元素使用了相同的函数,它按照我想要的方式工作,问题是当我尝试对选项卡执行相同的操作时。

这显然可以通过将事件类添加到选项卡来实现,但到目前为止,即使我设置了变量 $class = 0(该功能是添加事件类),它也不起作用。你能帮我解决这个问题吗?

<!-- Tabs -->
<ul class="nav nav-pills nav-justified" id="myTab" role="tablist">
<?php $links = get_post_custom_values( 'Iframe' ); ?>
<?php foreach ($links as $li) : $class = 0 ? 'active ' : ''; ?>
<li class="nav-item <?php $class ?>"><a class="nav-link " id="tab" data-toggle="tab" href="#tab" role="tab" aria-controls="tab" aria-expanded="true">Option</a></li>
<?php endforeach ; ?>
</ul>
<div class="tab-content" id="myTabContent">
<!--------------------------------------------------------- Youtube player --------------------------------------------------------------------------------->
<?php $player = get_post_custom_values( 'Iframe' ); ?>
<?php foreach ($player as $iframe) : $class = 0 ? 'active ' : ''; ?>
<div class="tab-pane active" id="#tab" role="tabpanel" aria-labelledby="tab">
<br>
<div class="song">
<div class="video-grid">
<?php echo $iframe; ?>
</div>
</div>
</div>
<?php endforeach ?>

这是前端的样子: As you can see the content is shown in just one tab

我尝试使用 Javascript,但仍然不起作用:

$(document).ready(function() {
$(".tab-pane").click(function() {
if ($("#tab").hasClass("active")) {
$("#tab").removeClass("active");
$("#tab").addClass("active");
}
});
$(".tab-pane").click();
});

最佳答案

每个选项卡都需要一个唯一的 ID 才能正常工作

<!-- Tabs -->
<ul class="nav nav-pills nav-justified" id="myTab" role="tablist">
<?php $links = get_post_custom_values( 'Iframe' ); ?>
<?php foreach ($links as $key=>$li) : ?>
<li class="nav-item <?php echo $key == 0 ? 'active ' : ''; ?>"><a class="nav-link " data-toggle="tab" href="#tab<?php echo $key; ?>" role="tab" aria-controls="tab" aria-expanded="true">Option</a></li>
<?php endforeach ; ?>
</ul>
<div class="tab-content" id="myTabContent">
<!--------------------------------------------------------- Youtube player --------------------------------------------------------------------------------->
<?php $player = get_post_custom_values( 'Iframe' ); ?>
<?php foreach ($player as $key=>$iframe) : ?>
<div class="tab-pane <?php echo $key == 0 ? 'active ' : ''; ?>" id="tab<?php echo $key; ?>" role="tabpanel" aria-labelledby="tab">
<br>
<div class="song">
<div class="video-grid">
<?php echo $iframe; ?>
</div>
</div>
</div>
<?php endforeach ?>

查看编译版本

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">

<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">

<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- Tabs -->
<ul class="nav nav-pills nav-justified" id="myTab" role="tablist">
<li class="nav-item active"><a class="nav-link " data-toggle="tab" href="#tab0" role="tab" aria-controls="tab" aria-expanded="true">Option</a></li>
<li class="nav-item "><a class="nav-link " data-toggle="tab" href="#tab1" role="tab" aria-controls="tab" aria-expanded="true">Option</a></li>
<li class="nav-item "><a class="nav-link " data-toggle="tab" href="#tab2" role="tab" aria-controls="tab" aria-expanded="true">Option</a></li>

</ul>
<div class="tab-content" id="myTabContent">
<!--------------------------------------------------------- Youtube player --------------------------------------------------------------------------------->
<div class="tab-pane active" id="tab0" role="tabpanel" aria-labelledby="tab">
<br>
<div class="song">
<div class="video-grid">
<iframe src="https://player.vimeo.com/video/229734145" width="640" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
<p><a href="https://vimeo.com/229734145">Bleach Ending 30 full</a> from <a href="https://vimeo.com/user49994421">World Anime</a> on <a href="https://vimeo.com">Vimeo</a>.</p></div>
</div>
</div>
<div class="tab-pane " id="tab1" role="tabpanel" aria-labelledby="tab">
<br>
<div class="song">
<div class="video-grid">
<iframe width="560" height="315" src="https://www.youtube.com/embed/zjnGJrJ-D6Y" frameborder="0" allowfullscreen></iframe></div>
</div>
</div>
<div class="tab-pane " id="tab2" role="tabpanel" aria-labelledby="tab">
<br>
<div class="song">
<div class="video-grid">
<iframe width="560" height="315" src="https://www.youtube.com/embed/nGdFHJXciAQ" frameborder="0" allowfullscreen></iframe></div>
</div>
</div>

关于javascript - 当Wordpress中有多个事件类时,如何将事件类设置为选项卡?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46681574/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com