max depth exceeded when dereferencing c0-param0的问题

在做项目的时候,用到了dwr,有一次居然报错,错误是
max depth exceeded when dereferencing c0-param0

上网查了一下,我居然传参数的时候传的是object类型的。
var param= document.getElementById("userNo");
Acvs_AjaxBO.getRejectedInstance(param, callback_);

应该改成
var param= document.getElementById("userNo").value;

下次一定记住。

原文地址:https://www.cnblogs.com/muhy/p/12979116.html