编码新手。我正在使用 django 框架创建一个库存表。我希望能够单击表格行(这是一部分),然后将该行/部分信息解析为详细信息视图。据我了解,表格行是内联元素,内联元素是伪代码,当前的 HTML 不允许在其中抛出锚标记(不好的做法?)所以我需要使用一些 javascript。目前,当我使用 runserver ( http://127.0.0.1:8000/inventory/ ) 时,库存视图会显示,但单击任何行都不会执行任何操作。这是我到目前为止所拥有的;库存.html{% extends "base.html" %}{% block body %}<br><table class="table table-hover"> <thead> <tr> <th>Part Number</th> <th>Description</th> <th>Location</th> <th>Supplier</th> <th>S.O.H</th> </tr> </thead> <tbody> {% for part in parts %} <!-- need to make these table rows link to their respective parts class="table_row" href="{{ selected_part.partnumber }}/detail">{{ selected_part.partnumber }}--> <tr data-href="{% url 'detail' part.pk %}"> <td>{{ part.pk }}</td> <td>{{ part.partnumber }}</td> <td>{{ part.description }}</td> <td>{{ part.location }}</td> <td>{{ part.supplier }}</td> <td>{{ part.stockonhand }}</td> </tr> {% endfor %} </tbody></table>{% endblock %}urls.pyfrom django.urls import pathfrom .views import *urlpatterns = [ path('inventory/', inventory_list, name='inventory'), # URL path for inventory_list view path('<str:pk>/', part_information, name='detail'), path('', index, name='index'),]自定义.js$('tr[data-href]').on("click", function() { document.location = $(this).data('href');});base.html<script src="/docs/4.4/dist/js/custom.js"></script>之前有</body>标签。我认为问题出在我的 javascript 文件中。我对此很陌生,非常感谢简化的解释
1 回答
红糖糍粑
TA贡献1815条经验 获得超6个赞
在您的 custom.js 文件中使用以下内容。当页面被加载时,这个函数 $(document).ready() 被执行初始化 tr 做什么'On Click'
$(document).ready(function(){
$('table tr').click(function(){
window.location = $(this).data('href');
return false;
});
});
添加回答
举报
0/150
提交
取消