refering a button to a specific li?Other way to creating a function that can receive param from each element from array?Trigger a button click with JavaScript on the Enter key in a text boxWhere should I put <script> tags in HTML markup?How do I add a class to a given element?How do I loop through or enumerate a JavaScript object?Convert form data to JavaScript object with jQueryHow to merge two arrays in JavaScript and de-duplicate itemsHow to create an HTML button that acts like a link?How to decide when to use Node.js?How do I remove a particular element from an array in JavaScript?jQuery scroll to element

Checks user level and limit the data before saving it to mongoDB

On The Origin of Dissonant Chords

How did Captain America manage to do this?

Can SQL Server create collisions in system generated constraint names?

What term is being referred to with "reflected-sound-of-underground-spirits"?

Rivers without rain

Size of electromagnet needed to replicate Earth's magnetic field

Was there a shared-world project before "Thieves World"?

Alignment of various blocks in tikz

Apply MapThread to all but one variable

555 timer FM transmitter

Philosophical question on logistic regression: why isn't the optimal threshold value trained?

Can I criticise the more senior developers around me for not writing clean code?

How to write a column outside the braces in a matrix?

Why must Chinese maps be obfuscated?

I preordered a game on my Xbox while on the home screen of my friend's account. Which of us owns the game?

As an international instructor, should I openly talk about my accent?

What happens to Mjolnir (Thor's hammer) at the end of Endgame?

Aliens crash on Earth and go into stasis to wait for technology to fix their ship

What does ゆーか mean?

What's the polite way to say "I need to urinate"?

"You've called the wrong number" or "You called the wrong number"

Do I have an "anti-research" personality?

Contradiction proof for inequality of P and NP?



refering a button to a specific li?


Other way to creating a function that can receive param from each element from array?Trigger a button click with JavaScript on the Enter key in a text boxWhere should I put <script> tags in HTML markup?How do I add a class to a given element?How do I loop through or enumerate a JavaScript object?Convert form data to JavaScript object with jQueryHow to merge two arrays in JavaScript and de-duplicate itemsHow to create an HTML button that acts like a link?How to decide when to use Node.js?How do I remove a particular element from an array in JavaScript?jQuery scroll to element






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















I have a html tag in my react app like this



<ul>
<li>
Item 1
<button>
Delete
</button>
</li>
<li>
Item 2
<button>
Delete
</button>
</li>
<li>
Item 3
<button>
Delete
</button>
</li>
</ul>


Now, if I click Delete button from one of my li elements, I want to delete that specific li. How do I refer the button clicked to that specific li using javascript only?










share|improve this question






















  • Use a map that'll solve all your problem

    – Germa Vinsmoke
    Mar 9 at 8:54











  • @GermaVinsmoke can you explain more? I've seen some other solution, but it's always involving some jquery, is there any other way using javascript only or 'reactjs' way?

    – Kevin Chandra
    Mar 9 at 8:56











  • Give an id to all the li tags using map then on button click you can use that id and delete it

    – Germa Vinsmoke
    Mar 9 at 9:01











  • @GermaVinsmoke I see your point now, you can put that in the answer, and I will mark that as accepted answer.

    – Kevin Chandra
    Mar 9 at 9:07











  • I'm trying that man, this internet not working properly XD

    – Germa Vinsmoke
    Mar 9 at 9:07

















1















I have a html tag in my react app like this



<ul>
<li>
Item 1
<button>
Delete
</button>
</li>
<li>
Item 2
<button>
Delete
</button>
</li>
<li>
Item 3
<button>
Delete
</button>
</li>
</ul>


Now, if I click Delete button from one of my li elements, I want to delete that specific li. How do I refer the button clicked to that specific li using javascript only?










share|improve this question






















  • Use a map that'll solve all your problem

    – Germa Vinsmoke
    Mar 9 at 8:54











  • @GermaVinsmoke can you explain more? I've seen some other solution, but it's always involving some jquery, is there any other way using javascript only or 'reactjs' way?

    – Kevin Chandra
    Mar 9 at 8:56











  • Give an id to all the li tags using map then on button click you can use that id and delete it

    – Germa Vinsmoke
    Mar 9 at 9:01











  • @GermaVinsmoke I see your point now, you can put that in the answer, and I will mark that as accepted answer.

    – Kevin Chandra
    Mar 9 at 9:07











  • I'm trying that man, this internet not working properly XD

    – Germa Vinsmoke
    Mar 9 at 9:07













1












1








1








I have a html tag in my react app like this



<ul>
<li>
Item 1
<button>
Delete
</button>
</li>
<li>
Item 2
<button>
Delete
</button>
</li>
<li>
Item 3
<button>
Delete
</button>
</li>
</ul>


Now, if I click Delete button from one of my li elements, I want to delete that specific li. How do I refer the button clicked to that specific li using javascript only?










share|improve this question














I have a html tag in my react app like this



<ul>
<li>
Item 1
<button>
Delete
</button>
</li>
<li>
Item 2
<button>
Delete
</button>
</li>
<li>
Item 3
<button>
Delete
</button>
</li>
</ul>


Now, if I click Delete button from one of my li elements, I want to delete that specific li. How do I refer the button clicked to that specific li using javascript only?







javascript html reactjs






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 9 at 8:51









Kevin ChandraKevin Chandra

2517




2517












  • Use a map that'll solve all your problem

    – Germa Vinsmoke
    Mar 9 at 8:54











  • @GermaVinsmoke can you explain more? I've seen some other solution, but it's always involving some jquery, is there any other way using javascript only or 'reactjs' way?

    – Kevin Chandra
    Mar 9 at 8:56











  • Give an id to all the li tags using map then on button click you can use that id and delete it

    – Germa Vinsmoke
    Mar 9 at 9:01











  • @GermaVinsmoke I see your point now, you can put that in the answer, and I will mark that as accepted answer.

    – Kevin Chandra
    Mar 9 at 9:07











  • I'm trying that man, this internet not working properly XD

    – Germa Vinsmoke
    Mar 9 at 9:07

















  • Use a map that'll solve all your problem

    – Germa Vinsmoke
    Mar 9 at 8:54











  • @GermaVinsmoke can you explain more? I've seen some other solution, but it's always involving some jquery, is there any other way using javascript only or 'reactjs' way?

    – Kevin Chandra
    Mar 9 at 8:56











  • Give an id to all the li tags using map then on button click you can use that id and delete it

    – Germa Vinsmoke
    Mar 9 at 9:01











  • @GermaVinsmoke I see your point now, you can put that in the answer, and I will mark that as accepted answer.

    – Kevin Chandra
    Mar 9 at 9:07











  • I'm trying that man, this internet not working properly XD

    – Germa Vinsmoke
    Mar 9 at 9:07
















Use a map that'll solve all your problem

– Germa Vinsmoke
Mar 9 at 8:54





Use a map that'll solve all your problem

– Germa Vinsmoke
Mar 9 at 8:54













@GermaVinsmoke can you explain more? I've seen some other solution, but it's always involving some jquery, is there any other way using javascript only or 'reactjs' way?

– Kevin Chandra
Mar 9 at 8:56





@GermaVinsmoke can you explain more? I've seen some other solution, but it's always involving some jquery, is there any other way using javascript only or 'reactjs' way?

– Kevin Chandra
Mar 9 at 8:56













Give an id to all the li tags using map then on button click you can use that id and delete it

– Germa Vinsmoke
Mar 9 at 9:01





Give an id to all the li tags using map then on button click you can use that id and delete it

– Germa Vinsmoke
Mar 9 at 9:01













@GermaVinsmoke I see your point now, you can put that in the answer, and I will mark that as accepted answer.

– Kevin Chandra
Mar 9 at 9:07





@GermaVinsmoke I see your point now, you can put that in the answer, and I will mark that as accepted answer.

– Kevin Chandra
Mar 9 at 9:07













I'm trying that man, this internet not working properly XD

– Germa Vinsmoke
Mar 9 at 9:07





I'm trying that man, this internet not working properly XD

– Germa Vinsmoke
Mar 9 at 9:07












2 Answers
2






active

oldest

votes


















1














Use Array.map() to generate your items and attach an onClick handler like this:






class Demo extends React.Component 
state = items: ['Item 1', 'Item 2', 'Item 3'] ;

handleDelete = name =>
this.setState(s => ( items: s.items.filter(x => x !== name) ));


render()
return (
<ul>this.state.items.map(x =>
<li>x&nbsp;
<button onClick=() => this.handleDelete(x)>Delete</button>
</li>
)</ul>
);



ReactDOM.render(<Demo />, document.getElementById('root'));

<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
<div id="root"></div>





If you do not want to generate a delete function for each item and handle the deletion in a single function, you will have to add an id of some kind to your items to identify them. Then you can attach this id to the button using a data attribute and get this id from the event.target in the handler:






class Demo extends React.Component 
state =
items: [
id: 1, content: 'Item 1' ,
id: 2, content: 'Item 2' ,
id: 3, content: 'Item 3'
]
;

handleDelete = e =>
const id = +e.target.getAttribute('data-id');
this.setState(s => ( items: s.items.filter(x => x.id !== id) ));


render()
return (
<ul>this.state.items.map(( id, content ) =>
<li key=id>content&nbsp;
<button data-id=id onClick=this.handleDelete>Delete</button>
</li>
)</ul>
);



ReactDOM.render(<Demo />, document.getElementById('root'));

<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
<div id="root"></div>








share|improve this answer

























  • is there any other way than this that more efficient? I heard that putting an arrow function inside each element of array like that is costly, because you generate a function for each element instead of generate one function that can handle each element.

    – Kevin Chandra
    Mar 20 at 16:07











  • @Kevin Chandra, I would suggest to not worry about this until you do have performance problems, passing functions around is something that is done everywhere in functional languages.

    – jo_va
    Mar 20 at 16:11












  • Sure, but I still want to know if there any other solution

    – Kevin Chandra
    Mar 20 at 16:16











  • @Kevin Chandra, I will update my answer and add a snippet for another way to do it

    – jo_va
    Mar 20 at 16:18











  • thanks for the other solution, however that is the same solution from GermaVinsmoke. Actually I heard the other solution is to wrap the button with some other component which has a prop of the element's id or content and also a prop of the function to handle it which is handleDelete in this case. But still, I only grasp the concept of it.

    – Kevin Chandra
    Mar 20 at 16:28


















0














You can give id properties to your button element based on id from li element, and use that id when referring the item that want to be deleted.






share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55075591%2frefering-a-button-to-a-specific-li%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    Use Array.map() to generate your items and attach an onClick handler like this:






    class Demo extends React.Component 
    state = items: ['Item 1', 'Item 2', 'Item 3'] ;

    handleDelete = name =>
    this.setState(s => ( items: s.items.filter(x => x !== name) ));


    render()
    return (
    <ul>this.state.items.map(x =>
    <li>x&nbsp;
    <button onClick=() => this.handleDelete(x)>Delete</button>
    </li>
    )</ul>
    );



    ReactDOM.render(<Demo />, document.getElementById('root'));

    <script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
    <div id="root"></div>





    If you do not want to generate a delete function for each item and handle the deletion in a single function, you will have to add an id of some kind to your items to identify them. Then you can attach this id to the button using a data attribute and get this id from the event.target in the handler:






    class Demo extends React.Component 
    state =
    items: [
    id: 1, content: 'Item 1' ,
    id: 2, content: 'Item 2' ,
    id: 3, content: 'Item 3'
    ]
    ;

    handleDelete = e =>
    const id = +e.target.getAttribute('data-id');
    this.setState(s => ( items: s.items.filter(x => x.id !== id) ));


    render()
    return (
    <ul>this.state.items.map(( id, content ) =>
    <li key=id>content&nbsp;
    <button data-id=id onClick=this.handleDelete>Delete</button>
    </li>
    )</ul>
    );



    ReactDOM.render(<Demo />, document.getElementById('root'));

    <script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
    <div id="root"></div>








    share|improve this answer

























    • is there any other way than this that more efficient? I heard that putting an arrow function inside each element of array like that is costly, because you generate a function for each element instead of generate one function that can handle each element.

      – Kevin Chandra
      Mar 20 at 16:07











    • @Kevin Chandra, I would suggest to not worry about this until you do have performance problems, passing functions around is something that is done everywhere in functional languages.

      – jo_va
      Mar 20 at 16:11












    • Sure, but I still want to know if there any other solution

      – Kevin Chandra
      Mar 20 at 16:16











    • @Kevin Chandra, I will update my answer and add a snippet for another way to do it

      – jo_va
      Mar 20 at 16:18











    • thanks for the other solution, however that is the same solution from GermaVinsmoke. Actually I heard the other solution is to wrap the button with some other component which has a prop of the element's id or content and also a prop of the function to handle it which is handleDelete in this case. But still, I only grasp the concept of it.

      – Kevin Chandra
      Mar 20 at 16:28















    1














    Use Array.map() to generate your items and attach an onClick handler like this:






    class Demo extends React.Component 
    state = items: ['Item 1', 'Item 2', 'Item 3'] ;

    handleDelete = name =>
    this.setState(s => ( items: s.items.filter(x => x !== name) ));


    render()
    return (
    <ul>this.state.items.map(x =>
    <li>x&nbsp;
    <button onClick=() => this.handleDelete(x)>Delete</button>
    </li>
    )</ul>
    );



    ReactDOM.render(<Demo />, document.getElementById('root'));

    <script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
    <div id="root"></div>





    If you do not want to generate a delete function for each item and handle the deletion in a single function, you will have to add an id of some kind to your items to identify them. Then you can attach this id to the button using a data attribute and get this id from the event.target in the handler:






    class Demo extends React.Component 
    state =
    items: [
    id: 1, content: 'Item 1' ,
    id: 2, content: 'Item 2' ,
    id: 3, content: 'Item 3'
    ]
    ;

    handleDelete = e =>
    const id = +e.target.getAttribute('data-id');
    this.setState(s => ( items: s.items.filter(x => x.id !== id) ));


    render()
    return (
    <ul>this.state.items.map(( id, content ) =>
    <li key=id>content&nbsp;
    <button data-id=id onClick=this.handleDelete>Delete</button>
    </li>
    )</ul>
    );



    ReactDOM.render(<Demo />, document.getElementById('root'));

    <script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
    <div id="root"></div>








    share|improve this answer

























    • is there any other way than this that more efficient? I heard that putting an arrow function inside each element of array like that is costly, because you generate a function for each element instead of generate one function that can handle each element.

      – Kevin Chandra
      Mar 20 at 16:07











    • @Kevin Chandra, I would suggest to not worry about this until you do have performance problems, passing functions around is something that is done everywhere in functional languages.

      – jo_va
      Mar 20 at 16:11












    • Sure, but I still want to know if there any other solution

      – Kevin Chandra
      Mar 20 at 16:16











    • @Kevin Chandra, I will update my answer and add a snippet for another way to do it

      – jo_va
      Mar 20 at 16:18











    • thanks for the other solution, however that is the same solution from GermaVinsmoke. Actually I heard the other solution is to wrap the button with some other component which has a prop of the element's id or content and also a prop of the function to handle it which is handleDelete in this case. But still, I only grasp the concept of it.

      – Kevin Chandra
      Mar 20 at 16:28













    1












    1








    1







    Use Array.map() to generate your items and attach an onClick handler like this:






    class Demo extends React.Component 
    state = items: ['Item 1', 'Item 2', 'Item 3'] ;

    handleDelete = name =>
    this.setState(s => ( items: s.items.filter(x => x !== name) ));


    render()
    return (
    <ul>this.state.items.map(x =>
    <li>x&nbsp;
    <button onClick=() => this.handleDelete(x)>Delete</button>
    </li>
    )</ul>
    );



    ReactDOM.render(<Demo />, document.getElementById('root'));

    <script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
    <div id="root"></div>





    If you do not want to generate a delete function for each item and handle the deletion in a single function, you will have to add an id of some kind to your items to identify them. Then you can attach this id to the button using a data attribute and get this id from the event.target in the handler:






    class Demo extends React.Component 
    state =
    items: [
    id: 1, content: 'Item 1' ,
    id: 2, content: 'Item 2' ,
    id: 3, content: 'Item 3'
    ]
    ;

    handleDelete = e =>
    const id = +e.target.getAttribute('data-id');
    this.setState(s => ( items: s.items.filter(x => x.id !== id) ));


    render()
    return (
    <ul>this.state.items.map(( id, content ) =>
    <li key=id>content&nbsp;
    <button data-id=id onClick=this.handleDelete>Delete</button>
    </li>
    )</ul>
    );



    ReactDOM.render(<Demo />, document.getElementById('root'));

    <script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
    <div id="root"></div>








    share|improve this answer















    Use Array.map() to generate your items and attach an onClick handler like this:






    class Demo extends React.Component 
    state = items: ['Item 1', 'Item 2', 'Item 3'] ;

    handleDelete = name =>
    this.setState(s => ( items: s.items.filter(x => x !== name) ));


    render()
    return (
    <ul>this.state.items.map(x =>
    <li>x&nbsp;
    <button onClick=() => this.handleDelete(x)>Delete</button>
    </li>
    )</ul>
    );



    ReactDOM.render(<Demo />, document.getElementById('root'));

    <script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
    <div id="root"></div>





    If you do not want to generate a delete function for each item and handle the deletion in a single function, you will have to add an id of some kind to your items to identify them. Then you can attach this id to the button using a data attribute and get this id from the event.target in the handler:






    class Demo extends React.Component 
    state =
    items: [
    id: 1, content: 'Item 1' ,
    id: 2, content: 'Item 2' ,
    id: 3, content: 'Item 3'
    ]
    ;

    handleDelete = e =>
    const id = +e.target.getAttribute('data-id');
    this.setState(s => ( items: s.items.filter(x => x.id !== id) ));


    render()
    return (
    <ul>this.state.items.map(( id, content ) =>
    <li key=id>content&nbsp;
    <button data-id=id onClick=this.handleDelete>Delete</button>
    </li>
    )</ul>
    );



    ReactDOM.render(<Demo />, document.getElementById('root'));

    <script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
    <div id="root"></div>








    class Demo extends React.Component 
    state = items: ['Item 1', 'Item 2', 'Item 3'] ;

    handleDelete = name =>
    this.setState(s => ( items: s.items.filter(x => x !== name) ));


    render()
    return (
    <ul>this.state.items.map(x =>
    <li>x&nbsp;
    <button onClick=() => this.handleDelete(x)>Delete</button>
    </li>
    )</ul>
    );



    ReactDOM.render(<Demo />, document.getElementById('root'));

    <script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
    <div id="root"></div>





    class Demo extends React.Component 
    state = items: ['Item 1', 'Item 2', 'Item 3'] ;

    handleDelete = name =>
    this.setState(s => ( items: s.items.filter(x => x !== name) ));


    render()
    return (
    <ul>this.state.items.map(x =>
    <li>x&nbsp;
    <button onClick=() => this.handleDelete(x)>Delete</button>
    </li>
    )</ul>
    );



    ReactDOM.render(<Demo />, document.getElementById('root'));

    <script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
    <div id="root"></div>





    class Demo extends React.Component 
    state =
    items: [
    id: 1, content: 'Item 1' ,
    id: 2, content: 'Item 2' ,
    id: 3, content: 'Item 3'
    ]
    ;

    handleDelete = e =>
    const id = +e.target.getAttribute('data-id');
    this.setState(s => ( items: s.items.filter(x => x.id !== id) ));


    render()
    return (
    <ul>this.state.items.map(( id, content ) =>
    <li key=id>content&nbsp;
    <button data-id=id onClick=this.handleDelete>Delete</button>
    </li>
    )</ul>
    );



    ReactDOM.render(<Demo />, document.getElementById('root'));

    <script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
    <div id="root"></div>





    class Demo extends React.Component 
    state =
    items: [
    id: 1, content: 'Item 1' ,
    id: 2, content: 'Item 2' ,
    id: 3, content: 'Item 3'
    ]
    ;

    handleDelete = e =>
    const id = +e.target.getAttribute('data-id');
    this.setState(s => ( items: s.items.filter(x => x.id !== id) ));


    render()
    return (
    <ul>this.state.items.map(( id, content ) =>
    <li key=id>content&nbsp;
    <button data-id=id onClick=this.handleDelete>Delete</button>
    </li>
    )</ul>
    );



    ReactDOM.render(<Demo />, document.getElementById('root'));

    <script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
    <div id="root"></div>






    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Mar 20 at 16:21

























    answered Mar 9 at 9:13









    jo_vajo_va

    9,48621032




    9,48621032












    • is there any other way than this that more efficient? I heard that putting an arrow function inside each element of array like that is costly, because you generate a function for each element instead of generate one function that can handle each element.

      – Kevin Chandra
      Mar 20 at 16:07











    • @Kevin Chandra, I would suggest to not worry about this until you do have performance problems, passing functions around is something that is done everywhere in functional languages.

      – jo_va
      Mar 20 at 16:11












    • Sure, but I still want to know if there any other solution

      – Kevin Chandra
      Mar 20 at 16:16











    • @Kevin Chandra, I will update my answer and add a snippet for another way to do it

      – jo_va
      Mar 20 at 16:18











    • thanks for the other solution, however that is the same solution from GermaVinsmoke. Actually I heard the other solution is to wrap the button with some other component which has a prop of the element's id or content and also a prop of the function to handle it which is handleDelete in this case. But still, I only grasp the concept of it.

      – Kevin Chandra
      Mar 20 at 16:28

















    • is there any other way than this that more efficient? I heard that putting an arrow function inside each element of array like that is costly, because you generate a function for each element instead of generate one function that can handle each element.

      – Kevin Chandra
      Mar 20 at 16:07











    • @Kevin Chandra, I would suggest to not worry about this until you do have performance problems, passing functions around is something that is done everywhere in functional languages.

      – jo_va
      Mar 20 at 16:11












    • Sure, but I still want to know if there any other solution

      – Kevin Chandra
      Mar 20 at 16:16











    • @Kevin Chandra, I will update my answer and add a snippet for another way to do it

      – jo_va
      Mar 20 at 16:18











    • thanks for the other solution, however that is the same solution from GermaVinsmoke. Actually I heard the other solution is to wrap the button with some other component which has a prop of the element's id or content and also a prop of the function to handle it which is handleDelete in this case. But still, I only grasp the concept of it.

      – Kevin Chandra
      Mar 20 at 16:28
















    is there any other way than this that more efficient? I heard that putting an arrow function inside each element of array like that is costly, because you generate a function for each element instead of generate one function that can handle each element.

    – Kevin Chandra
    Mar 20 at 16:07





    is there any other way than this that more efficient? I heard that putting an arrow function inside each element of array like that is costly, because you generate a function for each element instead of generate one function that can handle each element.

    – Kevin Chandra
    Mar 20 at 16:07













    @Kevin Chandra, I would suggest to not worry about this until you do have performance problems, passing functions around is something that is done everywhere in functional languages.

    – jo_va
    Mar 20 at 16:11






    @Kevin Chandra, I would suggest to not worry about this until you do have performance problems, passing functions around is something that is done everywhere in functional languages.

    – jo_va
    Mar 20 at 16:11














    Sure, but I still want to know if there any other solution

    – Kevin Chandra
    Mar 20 at 16:16





    Sure, but I still want to know if there any other solution

    – Kevin Chandra
    Mar 20 at 16:16













    @Kevin Chandra, I will update my answer and add a snippet for another way to do it

    – jo_va
    Mar 20 at 16:18





    @Kevin Chandra, I will update my answer and add a snippet for another way to do it

    – jo_va
    Mar 20 at 16:18













    thanks for the other solution, however that is the same solution from GermaVinsmoke. Actually I heard the other solution is to wrap the button with some other component which has a prop of the element's id or content and also a prop of the function to handle it which is handleDelete in this case. But still, I only grasp the concept of it.

    – Kevin Chandra
    Mar 20 at 16:28





    thanks for the other solution, however that is the same solution from GermaVinsmoke. Actually I heard the other solution is to wrap the button with some other component which has a prop of the element's id or content and also a prop of the function to handle it which is handleDelete in this case. But still, I only grasp the concept of it.

    – Kevin Chandra
    Mar 20 at 16:28













    0














    You can give id properties to your button element based on id from li element, and use that id when referring the item that want to be deleted.






    share|improve this answer



























      0














      You can give id properties to your button element based on id from li element, and use that id when referring the item that want to be deleted.






      share|improve this answer

























        0












        0








        0







        You can give id properties to your button element based on id from li element, and use that id when referring the item that want to be deleted.






        share|improve this answer













        You can give id properties to your button element based on id from li element, and use that id when referring the item that want to be deleted.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 9 at 9:11









        Kevin ChandraKevin Chandra

        2517




        2517



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55075591%2frefering-a-button-to-a-specific-li%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

            Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

            Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved