Thinkphp5中利用js/jQuery傳遞參數的方法


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});


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM