URL 创建 http://localhost/ci_search/product_filter/1?brand=Honor&brand=Infinix&brand=VIVO
我要的网址
http://localhost/ci_search/product_filter/1?brand=Honor,Infinix,VIVO
<form id="form" method="GET" action="<?= base_url('product_filter/filter_url') ?>">
<div class="container">
<div class="row">
foreach($brand_data->result_array() as $key=>$row)
{
?>
<div class="list-group-item checkbox">
<label><input type="checkbox" name="brand[]" class="common_selector brand" value="<?php echo $row['product_brand']; ?>" > <?php echo $row['product_brand']; ?></label>
</div>
<?php
}
?>
</div>
查询器
$(document).ready(function(){
$(".brand").change(function() {
if(this.checked) {
//Do stuff
alert(get_filter('brand'));
$("#form").submit();
}
});
function get_filter(class_name)
{
var filter = [];
$('.'+class_name+':checked').each(function(){
filter.push($(this).val());
});
return filter;
}
});
牧羊人nacy