php - Uncaught transport.js/parseResult() error: can't parse to JSON.
大家讲道理
大家讲道理 2017-04-10 16:14:54
0
0
533

复选框:<input type="checkbox" name="checkboxes" value="{$goods.rec_id}" />

按钮:<input name="split" type="button" id="split" value="拆分訂單" class="button" onclick="check()" />

function check()
{
  var rec_id_Array = new Array();
  $("[name='checkboxes']:checked").each(function () {
  rec_id_Array.push($(this).val());
  });
  listTable.remove(rec_id_Array, '確定拆分訂單嗎', 'split_order');
}

listTable.remove = function(id, cfm, opt)
{
  if (opt == null)
  {
    opt = "remove";
  }

  if (confirm(cfm))
  {
    var args = "act=" + opt + "&id=" + id + this.compileFilter();

    Ajax.call(this.url, args, this.listCallback, "GET", "JSON");
  }
}
大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

全部回覆(0)
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!