i´m using MVC and I have a page where the info was generated from a foreach loop, tha shows the model´s property.
@foreach (var chassi in Model.Chassis)
{
<div >
@chassi
<img src="~/assets/icons/exclude.svg" alt="Remove chassis"/>
</div>
}

I have to do this 'X' works, to remove this div and remove the info from the model that this page is receving.
CodePudding user response:
You can achieve this by following these steps:
- Assign
idto eachdivelement via the same loop. - Add
onclickhandler toimgelement. - This handler, when clicked on image icon, will give you access to the
event. - Access the desired
divby callingevent.target.parentNodeand make itsdisplaypropertynoneto hide it or callremove()to remove it from the dom.
Hope this helps.
CodePudding user response:
Can try something like this (you can merge the JS in the onclick with your delete image):
<div >
Test
<button onClick="this.parentNode.parentNode.removeChild(this.parentNode);">Delete me</button>
</div>
<div >
Test
<button onClick="this.parentNode.parentNode.removeChild(this.parentNode);">Delete me</button>
</div>
CodePudding user response:
just remove the parent
<img onclick="remove(this.parentNode);" />
or if you have multi parent
<img onclick="remove(this.parentNode.parentNode);" />
