我有一个 index.html 显示我拥有的所有数据库。现在我想提供一些选项来处理数据库(例如编辑、删除……)。所以我想创建一个带有数据库 ID 和一些用于重定向正确 url 的链接的无线电选择。
我的目标:点击请求的动作将用户带到正确的网址。
我希望,这是可以理解的 :) 任何人都可以帮助我,拜托。
// 已编辑
<script>
function edit_db(id){
window.location.href="/edit/"+id
}
function delete_db(id){
window.location.href="/"+id+"/delete/"
}
</script>
<form method="post" action="">
<ul>
<table>
<tr>
<th> </th>
<th>Database</th>
<th>expireDate</th>
</tr>
{% for db in resources %}
<tr>
<td>
<input type="radio" name="id" id="{{db.id}}" value="{{db.id}}">
</td>
<td>{{db.name}}</td>
<td>{{db.expireDate}}</td>
</tr>
{% endfor %}
</table>
<input type="submit" class="submitButton" onclick="edit_db({{ db.id }})" value="{% trans "Edit database"%}" />
<input type="submit" class="submitButton" onclick="delete_db({{ db.id }})" value="{% trans "Delete database"%}" />
</form>