jquery出错。 validate.js

时间:2010-08-25 09:03:56

标签: jquery jquery-validate

我使用这个优秀的jquery脚本但是我收到了调试模式的错误“----这是一个调试模式,你的表单有问题,它会尽力帮助你,当你认为你已经确定时刷新你没有进入成功功能的问题和jsonValidateReturn什么都不返回-----“或者在firefox错误控制台中显示这个: 错误:data.jsonValidateReturn未定义 源文件:js / jquery.validationEngine.js 当我检查一个可用的用户名时,一切正常并且它正确验证所有字段...... ajaxsubmitregister.php控制所有

require_once("../config/config.php");
$arrayToJs = array();
$arrayToJs[0] = $validateId;
$arrayToJs[1] = $validateError;
$isValidate = true;  

if($isValidate == true)
{
    echo "true";
}
else
{ 
    $isValidate = false;

    if (!function_exists('json_encode'))
    {
        function json_encode($a=false)
        {
            if (is_null($a)) return 'null';
            if ($a === false) return 'false';
            if ($a === true) return 'true';
            if (is_scalar($a))
            {
            if (is_float($a))
            {
                // Always use "." for floats.
                return floatval(str_replace(",", ".", strval($a)));
            }

            if (is_string($a))
            {
                static $jsonReplaces = array(array("\\", "/", "\n", "\t", "\r", "\b", "\f", '"'), array('\\\\', '\\/', '\\n', '\\t', '\\r', '\\b', '\\f', '\"'));
                return '"' . str_replace($jsonReplaces[0], $jsonReplaces[1], $a) . '"';
            }
            else
                return $a;
        }

        $isList = true;

        for ($i = 0, reset($a); $i < count($a); $i++, next($a))
        {
            if (key($a) !== $i)
            {
                $isList = false;
                break;
            }
        }

        $result = array();

        if ($isList)
        {
            foreach ($a as $v) $result[] = json_encode($v);
            return '[' . join(',', $result) . ']';
        }
        else
        {
            foreach ($a as $k => $v) $result[] = json_encode($k).':'.json_encode($v);
            return '{' . join(',', $result) . '}';
        }
    }
}

echo'{"jsonValidateReturn":'.json_encode($arrayToJs).'}';

}

0 个答案:

没有答案