0
誰かが下のjavascriptを見ることができますか?すべてのタブが表示されていますが、いつでも1つのタブのみを表示したいです
私は3つのタブを作成したいと思います。選択したときに、1つのタブしか表示されません。
現在、以下のコードをテストすると、3つのタブがデフォルトで1つではなく1つだけ表示され、タブが選択されると他のタブは非表示になります。
<div class="tab">
<button class="tablinks" onclick="openCity(event, 'General')">
<span size="4" style="font-size: small;">
<span color="grey" style="color: grey;">
<b>General</b>
</span>
</span>
</button>
<button class="tablinks" onclick="openCity(event, 'Product Specifications')">
<span size="4" style="font-size: small;">
<span color="grey" style="color: grey;">
<b>Product Specifications</b>
</span>
</span>
</button>
<button class="tablinks" onclick="openCity(event, 'Guarantee')">
<span size="4" style="font-size: small;">
<span color="grey" style="color: grey;">
<b>Guarantee</b>
</span>
</span>
</button>
</div>
<div id="General" class="tabcontent">
CONTENT
</div>
<div id="Product Specifications" class="tabcontent">
CONTENT
</div>
<div id="Guarantee" class="tabcontent">
CONTENT
</div>
<script>// <![CDATA[
function openCity(evt, cityName) {
// Declare all variables
var i, tabcontent, tablinks;
// Get all elements with class="tabcontent" and hide them
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
// Get all elements with class="tablinks" and remove the class "active"
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" active", "");
}
// Show the current tab, and add an "active" class to the button that opened the tab
document.getElementById(cityName).style.display = "block";
evt.currentTarget.className += " active";
}
// ]]>
</script>
こんにちは、ありがとうございました。これは参考になります。しかし、最初のタブをデフォルトで表示させる方法はありますか?クリックされるまで、2番目と3番目のタブの内容を非表示にします。しかし、クリックすると、選択したタブの内容のみが表示されます。 – Maximus000
あなたの要件に応じて回答を編集しました(最初のタブを表示しています) –
ありがとうございました。魅力的な作品! – Maximus000