私のページは、同じクラスを持つが ID を持たない div に分割された、php で生成されたコンテンツでいっぱいです。div を管理、変更、削除できるボタンをいくつか表示したいと思います。ボタンは、クラスを変更し、div を削除し、div のコンテンツを選択できる必要があります。これどうやってするの?ボタンの onclick アクションを何かに設定する方法はありますか? onclick="changetheclass(this)" と言うと、このボタンを含む div のクラスが実際に変更されますか?
私はここで意味を成していないと感じています:(誰かが私が話していることを理解しましたか?もしそうなら、これを行う可能性はありますか?前もって感謝します!:)
編集:これは div の 1 つなので、私が話していることを理解できます:
<div class="box"><p>
this is the content of the div
<button onclick="change_the_class(this_div_or_something)">click here to change the class of the div</a>
<button onclick="select_the_content(this_div_or_something)">click here to change the class of the div</a>
<button onclick="delete_the_whole_div(this_div_or_something)">click here to change the class of the div</a>
</p></div>