私は<details>
と<summary>
タグを使用してクリック展開の崩壊を使用しています。 問題なく拡張したり折りたたんだりすることができます。 1つの情報を1回だけ展開したいのですが。詳細と要約タグで拡大するをクリックしてください
私が意味していたのは、 情報1をクリックすると展開され、再度情報2をクリックすると意味します。 その後情報1が崩壊し、情報2が展開されます。 これは、一度に1つしか展開できないことを意味します。私はあなたがここにjQueryを使って、簡単にこれを行うことができ、CSS
<details>
<summary>Information1</summary>
If your browser supports this element, it should allow
you to expand and collapse these details.
</details>
<details>
<summary>Information2</summary>
If your browser supports this element, it should allow
you to expand and collapse these details.
</details>
<details>
<summary>Information3</summary>
If your browser supports this element, it should allow
you to expand and collapse these details.
</details>
<details>
<summary>Information4</summary>
If your browser supports this element, it should allow
you to expand and collapse these details.
</details>
https://fiddle.jshell.net/mjxhj5se/
おかげ..
はどのようにあなたが今のところ拡大している:
それとも
<details>
と<summary>
で希望の効果を達成するために、このjQueryのを追加することができますか? –https://fiddle.jshell.net/mjxhj5se/ここをクリックしてください – sj2012
[の特定のタグを開いた後に他のすべてのタグを自動的に閉じる](http://stackoverflow.com/questions/16751345/)自動的にclose-all-the-other-details-tags-after-opening-a-specific-detai) –