django js 實現表格動態標序號
<table class="table table-striped"> <thead> <tr class="key_words_head"> <th>序號</th> <th>類目</th> <th>關鍵詞</th> <th>操作</th> </tr> </thead> <tbody id="key_words_body"> {% for keywords in classify_keywords_obj %} <tr class="key_words_tbody"> <td id="td_num"></td> <td id="hide_id">{{ keywords.id }}</td> <td id="td_classify">{{ keywords.classify.classify_name }}</td> <td id="td_keywords">{{ keywords.keywords }}</td> <td><a href="javascript:void(0);" rel="external nofollow" rel="external nofollow" onclick="show_change_model('{{ keywords.id }}')">編輯</a> <a href="javascript:void(0);" rel="external nofollow" rel="external nofollow" style="color: red" onclick="del_settings('{{ keywords.id }}',this)">刪除</a></td> </tr> {% endfor %} </tbody> </table>
<script> function xu_hao() { var oTable = $('tr.key_words_tbody').length; for (var i = 0; i < oTable + 1; i++) { $('tr.key_words_tbody').eq(i).children("td#td_num").empty(); $('tr.key_words_tbody').eq(i).children("td#td_num").append(i + 1); } } </script>
總結
以上所述是小編給大家介紹的django js 實現表格動態標序號的實例代碼 ,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對武林網網站的支持!
如果你覺得本文對你有幫助,歡迎轉載,煩請注明出處,謝謝!
新聞熱點
疑難解答