首頁 >後端開發 >php教程 >Uncaught transport.js/parseResult() error: can't parse to JSON.

Uncaught transport.js/parseResult() error: can't parse to JSON.

WBOY
WBOY原創
2016-06-06 20:25:282187瀏覽

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

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

<code class="javascript">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");
  }
}</code>

回复内容:

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

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

<code class="javascript">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");
  }
}</code>
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn