我有一個手風琴,其中一些文字標記為“重要”。我希望頁面透過點擊頁面載入時的按鈕切換來自動開啟標記為「重要」的頁面。
我已經使用$(".diff__filename:contains('sections/')"))
在標題中搜尋「重要」一詞,但我不知道如何告訴它點擊旁邊的按鈕。
我選擇使用 JQuery 以避免循環遍歷類別名稱。
<p class="title"> Important: Content 1 <button class="toggle">Open</button> </p> <p class="title"> Content 2 <button class="toggle">Open</button> </p> <p class="title"> Content 3 <button class="toggle">Open</button> </p> <p class="title"> Important: Content 4 <button class="toggle">Open</button> </p>
您可以在元素上使用
:contains
,然後觸發點擊:負載輸出: