|
楼主 |
发表于 2011-7-12 14:00:56
|
显示全部楼层
jeongee 发表于 2011-7-12 13:54
你用的是CI的分页吗?
那你用错了,应该这样
var page= document.getElementById('limit').value;
<script>
function pageList(){
var limit = '<?php echo $limit?>';
var page= document.getElementById('limit').value;
var offset = page * limit;
if(offset==''){
return false;
}else{
location = 'http://localhost/index.php/user/showlist/'+offset;
}
}
</script>
现在偏移了一页阿。。 |
|