0
我有一個HTML表,最後一列是複選框。所以當我檢查這個列中的多個複選框時,它應該得到選定的值,然後我想將這個值列表發送給一個python函數。選擇多個複選框,並在Python中獲取值Django
任何人都可以請幫助我嗎?
<table id="test-datatable" class="table table-bordered">
<thead>
<tr>
<th>Id</th>
<th>First Name</th>
<th>Last Name</th>
<th>Address</th>
<th>Occupation</th>
<th><input name="select_many" id ="select_many" value="1" `type="checkbox"></th>
</tr>
</thead>
</table>
謝謝。你能告訴我在哪裏添加這段代碼,以及如何在django視圖中調用它? –
Sneha,你是否能夠找到在哪裏發佈此代碼以及如何在Django中調用它?我遇到同樣的問題,我沒有使用表單,我需要使用ajax/js傳遞值。 – student101