---参数数据放在大括号中。
$.get('../../Ashx/ClickBjLine.ashx',
//"&applicationId=" + canshu,
{
BanjiaAreaID: "134234234",
Cust_id: "495584"
},
function (msg) {
alert(msg);
}, 'text');
---参数数据放在双引号中。
$.get('../../Ashx/ClickBjLine.ashx',
"&BanjiaAreaID=134234234&Cust_id=495584",
//{
// BanjiaAreaID: "134234234",
// Cust_id: "495584"
//},
function (msg) {
alert(msg);
}, 'text');
---参数数据放在url中。
$.get('../../Ashx/ClickBjLine.ashx?BanjiaAreaID=134234234&Cust_id=495584',
//{
// BanjiaAreaID: "134234234",
// Cust_id: "495584"
//},
function (msg) {
alert(msg);
}, 'text');