因此,我创建了一个带有 for 循环的 html 表,其中包含来自我的 Python 应用程序的对象列表。我现在想实现一个删除功能,为此我需要从单击按钮的同一行中获取单元格的值。我更喜欢用 JavaScript 来做,而不是用 jquery,因为我没有任何经验
<table class="table" id="table">
<tr>
<th scope="col">#</th>
<th scope="col">Titel</th>
<th scope="col">Interpret</th>
</tr>
{% for song in songs %}
<tr>
<td>{{song.id}}</td>
<td>{{song.titel}}</td>
<td>{{song.interpret}}</td>
<td>
<button class="btn btn-danger" type="submit" id="delete_button" name="delete_button" onclick="get_values(this)">Delete</button>
</td>
</tr>
{% endfor %}
</table>
编辑:
我查找了提到的那些 .parentNode 和 .previousSibling @Barmar 并尝试为现有的 onclick="get_values(this)" 编写一个函数,我已经添加到上面的按钮中
<script>
function get_values(this) {
var td = this.parentNode;
var x = td.previousSibling.innerHTML;
console.log(x);
}
</script>
console.log 响应说:“ReferenceError: Can't find variable: get_values”
编辑2:
所以我终于在避免 ReferenceError 方面取得了进展。我正在尝试不允许使用的函数 get_values(this),因此我将其更改为函数 get_values(x)。
<script>
function get_values(x) {
var td = x.parentNode;
interpret = td.previousSibling;
interpret_value = interpret.innerHTML;
titel = interpret.previousSibling.previousSibling.innerHTML;
console.log(titel);
console.log(interpret_value);
}
</script>
</body>
我现在遇到的问题是代码实际上没有 .innerHTML 属性就可以工作。所以我实际上回来了,例如去年圣诞节和重击!。但是现在我很难在没有 td-tags 的情况下获取值。我也用 .value 试过了。
编辑 3:
好的,我想有一个小错误,我现在自己解决了,这是我现在使用的代码,它给了我正确的值。我仍然不明白为什么我需要使用双 .previousSibling 但只要它有效,我很好。感谢所有试图提供帮助的人,我真的很感激。祝大家新年快乐。
<script>
function get_values(x) {
var td = x.parentNode;
interpret = td.previousSibling.previousSibling;
interpret_value = interpret.innerHTML;
titel = interpret.previousSibling.previousSibling;
titel_value = titel.innerHTML;
console.log(interpret);
console.log(interpret_value);
console.log(titel);
console.log(titel_value);
}
</script>
白板的微信
互换的青春
相关分类