tp5中url使用js变量传参方法
window.location.href="{:url('Index/index')}>"+"/ID/"+ID; //这样可以生成,但url模式改变则不能用
window.location.href="{:url('Index/index','ID=" + ID+ "')}" //解析不成功。
window.location.href="{:url('Index/detail',['id' => "+iD+"])}";//解析不成功
window.location.href='{:url("Index/detail")}?id='+ iD ;//解析成功
另外一种方法:
var pid = 3;//要带入的变量
var str = "{:url('Index/detail',array('id'=>'p_id'))}"; //先将变量以字符串的形式带入U函数中
str1 = str.replace("P_id",pid); //将代替变量的字符串用真实变量替换掉,OK搞定!
$("#city_id").load(str1);
或者
var pid = 3;
var str = "{:url('Index/detail')}";
$("#city_id").load(str, {"id" : pid});
生成url 带入多个参数:
Url::build('index/detail/5',['id'=>1,'name'=>'thinkphp']);
原文链接 https://blog.csdn.net/haoaiqian/article/details/62881647
js 地址栏传参要使用
encodeURIComponent() 或 encodeURI()编码
希望广大博友给予建议和指导