PHP 传值的有关问题
程序员文章站
2022-06-13 10:15:28
...
PHP 传值的问题
点击上面的 任何一个 在点击下面的 任何一个 2个 怎么传值呢
我要的是/index.php/Zhaopin/index?Position=其它职位&Recruitment=坪山新区
------解决思路----------------------
------解决思路----------------------
你是post 还是get
------解决思路----------------------
这个不是前端构造URL时的问题吗?
------解决思路----------------------
你get两次
你应该是想得到在地址栏点击后在地址栏出现这个吧index.php/Zhaopin/index?Position=其它职位&Recruitment=罗湖区""
------解决思路----------------------
这个可以用jQuery的方式做,像jQuery.address.parameter(key,value)这样,就会在地址栏中拼接上参数和值,还是很好用的!!!
public function index(){
$Dao = M("zhaopin");
// 构造查询条件
$condition['Position'] = $_GET['Position'];
$condition['Recruitment'] = $_GET['Recruitment'];
$condition['Position'] = array('like',"%".$_GET['Position']."%");
$condition['Recruitment'] = array('like',"%".$_GET['Recruitment']."%");
// 计算总数
$count = $Dao->where($condition)->count();
// 导入分页类
import("ORG.Util.Page");
// 实例化分页类
$p = new Page($count,40);
// 获取查询参数
$map['Position'] = $_GET['Position'];
$map['Recruitment'] = $_GET['Recruitment'];
foreach($map as $key=>$val) {
$p->parameter .= "$key=".urlencode($val)."&";
}
// 分页显示输出
$page = $p->show();
// 当前页数据查询
$list = $Dao->where($condition)->order('id DESC')->limit($p->firstRow.','.$p->listRows)->select();
// 赋值赋值
$this->assign('page', $page);
$this->assign('list', $list);
$this->display();
}
全部
物流专员/助理
物流经理/主管
物流总监
调度员
快递员
仓库管理员
仓库经理/主管
装卸/搬运工
供应链管理
单证员
国际货运
其它职位
全深圳
罗湖区
福田区
南山区
盐田区
宝安区
龙岗区
光明新区
坪山新区
大鹏新区
龙华新区
深圳周
点击上面的 任何一个 在点击下面的 任何一个 2个 怎么传值呢
我要的是/index.php/Zhaopin/index?Position=其它职位&Recruitment=坪山新区
------解决思路----------------------
------解决思路----------------------
你是post 还是get
------解决思路----------------------
这个不是前端构造URL时的问题吗?
------解决思路----------------------
你get两次
你应该是想得到在地址栏点击后在地址栏出现这个吧index.php/Zhaopin/index?Position=其它职位&Recruitment=罗湖区""
------解决思路----------------------
这个可以用jQuery的方式做,像jQuery.address.parameter(key,value)这样,就会在地址栏中拼接上参数和值,还是很好用的!!!
相关文章
相关视频
上一篇: SqlServer 时间字段格式化