ページに表示される製品のリストがあり、以下のようにすべての製品レコードの前にチェックボックスがありました
<script>
$(document).ready(function(){
$( "#process_button" ).click(function() {
var hello = $('.css-checkbox_latest')
console.log(hello);
$('.css-checkbox_latest').each(function(index){
console.log(index);
});
});
});
</script>
<table>
{% for product in list_of_products%}
<tr>
<td>
<input id="{{product.id}}" class="css-checkbox_latest" type="checkbox" />
</td>
<td>
{{product.name}}
</td>
<td>
{{product.price}}
</td>
</tr>
{% endfor %}
</table>
<input id="process_button" name="" type="button" class="btn btn-large addp_btn" value="Process">
上記のようなボタンがあり、
1. so when i clicked on the `button`, i should check whether any checkbox fields are `checked`, if they are checked i should fetch the `id attribute` values from the checkbox and make them as a list or tuple or an array of values
2. I had a django function, that accepts this values and do some processing based on the values, so how to call a url(using GET, something liek that) with the above values from the above jquery
上記のjqueryから、クラスを使用してチェックボックス要素を取得できますが、チェックボックスがチェックされている場合はループしてid値を取得する必要があるため、jqueryでこれを行う方法は?