如何使用jquery $ .get()传递字符串参数

时间:2015-06-07 15:44:27

标签: jquery parameters

我是jquery的新手,并修改了某人的代码,以便在以下调用中发送字符串参数。我不知道如何传递字符串参数 - myarray myarray =(1111,2222,3333)。我没有引号尝试过,〜(myarray)没有用。请帮忙。

$j.get("modhelper.html", "id="myarray"&dcid=~[tlist_sql;select dcid from customers where id = ~(curid);]~(dcid)[/tlist_sql]&transdate="+$j(this).val(), function(data)

1 个答案:

答案 0 :(得分:0)

一种方法是使用具有键值对的对象作为.get()方法的第二个属性

$j.get('modhelper.html', {
        id: 'myarray',
        dcid: '~~[tlist_sql;select dcid from customers where id = ~(curid);]~(dcid)[/tlist_sql]',
        transdate: $j(this).val()
    },
    function(data){
        //console.log(data);
    }
);