dongqian6484 2017-02-28 15:25
浏览 46
已采纳

如何通过ajax将多个值传递给codeigniter的控制器

function getdata(x,y)
{

    var xmlhttp=new XMLHttpRequest();

    xmlhttp.onreadystatechange=function(){

        if(xmlhttp.readystate==4) {
            document.getElementByID("txt").innerHTML=xmlhttp.responseText;
        }
    };

    xmlhttp.open("GET","base_url()/vendor/home/getdata"+x +y,true);

    xmlhttp.send();

}

I am passing two values x,y to the function from a view. Then I want to pass it to controller as in the program. But y is concantenated to x. If I use , or & operator, it is not passing values to controller. Which operator should I use to pass both values x and y to controller?

  • 写回答

3条回答 默认 最新

      报告相同问题?

      相关推荐 更多相似问题

      悬赏问题

      • ¥20 ROS中的TEB局部规划问题
      • ¥20 关于#matlab#的问题:要求测出上面图片中所有同心圆的半径
      • ¥20 epanet软件运行问题
      • ¥15 Python 文件读取
      • ¥60 dpabi进行Alff计算时脑池有干扰信号
      • ¥15 利用kmeans或kshape聚类分析对归一化的无量纲时间-降雨序列进行聚类
      • ¥15 protel99.SE提示一下弹窗
      • ¥15 银河麒麟v10 执行.run失败如何解决
      • ¥15 如何用Python打开LA文件
      • ¥15 用mysql做一个酒店管理系统