Home > Backend Development > PHP Tutorial > Uncaught transport.js/parseResult() error: can't parse to JSON.

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

WBOY
Release: 2016-06-06 20:25:28
Original
2192 people have browsed it

复选框:<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>
Copy after login
Copy after login

回复内容:

复选框:<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>
Copy after login
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template