---参数数据放在大括号中。
$.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');

posted on 2015-11-08 10:25  学到老死  阅读(158)  评论(0)    收藏  举报