<script>
jQuery(document).ready(function(){
jQuery(".select").click(function(){
var cat_id=($(this).attr('id'));
//alert(cat_id);
jQuery.ajax({
type:'POST',
url:'<?php echo home_url();?>/other',
data:'cat_id=' + cat_id,
success:function(data){
//alert(data);
jQuery("#content").html(data);
jQuery("#content").css("transform","translate3d(0px, 0px, 0px)");
return false;
}
});
});
});
</script>
这是我的代码。它正在发挥作用。 ajax
获取所有值但滑块不起作用。滑块不滑动。那么如何在ajax
后使用我的滑块?