Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.7k views
in Technique[技术] by (71.8m points)

Passing parameter to javascript function form HTML but using ejs

I have the current code in my 'index.ejs' file. I would like to pass the item as a parameter to the deleteItem() and updateItem() functions. However, simply writing item is not working.

<% items.forEach((item) => { %>
    <li class="list-group-item">
        <span class="description"><%= item %></span>
        <button class="btn btn-default btn-xs pull-right" id="delete-button" onclick="deleteItem()">
            <i class="glyphicon glyphicon-trash"></i>
         </button>
         <button class="btn btn-default btn-xs pull-right" id="update-button" onclick="updateItem()">
             <i class="glyphicon glyphicon-pencil"></i>
          </button>
     </li>
<% }) %>

To be specific, I want the individual items in the forEach loop to be passed when their buttons are clicked. I am using embedded javascript as you can see.

I have looked up answers saying one needs to make use of document.getElementById(), but I tried implementing it and it didn't work. Not sure if I did it correctly, though.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...