我的页面充满了 php 生成的内容,这些内容拆分为具有相同类但没有 id 的 div。我想展示一些允许我管理、更改和删除 div 的按钮;按钮应该能够更改类、删除 div 并选择 div 的内容。我怎样才能做到这一点?有没有办法将按钮的 onclick 操作设置为某种东西,比如 ... onclick="changetheclass(this)" 这实际上会改变包含此按钮的 div 的类?
伙计,我觉得我在这里没有任何意义:(有人明白我在说什么吗?如果是这样,有没有可能这样做?提前谢谢!:)
编辑:这是 div 之一,因此您可以理解我在说什么:
<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>