报错uncaught reference error :errors is not defined at geetest.6.0.9.js:1
这个是啥问题啊
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,width=device-width,initial-scale=1.0"/>
<meta name="format-detection" content="telephone=no,email=no,date=no,address=no">
<title>底部导航</title>
<link rel="stylesheet" type="text/css" href="./css/api.css"/>
<link rel="stylesheet" type="text/css" href="./css/style.css"/>
<link rel="stylesheet" type="text/css" href="./css/aui.css"/>
<style>
header{ background-color: #f2f2f2; }
header ul li { height: 50px; line-height: 50px; text-align: center; display: none; color: #323237; position: relative;font-size: 18px; }
header ul li.active{ display: block; }
#footer{ background-color: #f2f2f2; }
#footer ul li{ padding-top: 36px; padding-bottom: 4px; background: url() no-repeat center 2px; background-size: auto 30px; text-align: center; }
#footer ul li.active{ color: #6ab494; }
#footer ul li:nth-child(1){ background-image: url(./image/bottombtn0101.png); }
#footer ul li:nth-child(2){ background-image: url(./image/bottombtn0201.png); }
#footer ul li:nth-child(3){ background-image: url(./image/bottombtn0301.png); }
#footer ul li:nth-child(4){ background-image: url(./image/bottombtn0401.png); }
#footer ul li:nth-child(1).active{ background-image: url(./image/bottombtn0102.png); }
#footer ul li:nth-child(2).active{ background-image: url(./image/bottombtn0202.png); }
#footer ul li:nth-child(3).active{ background-image: url(./image/bottombtn0302.png); }
#footer ul li:nth-child(4).active{ background-image: url(./image/bottombtn0402.png); }
.flex-con{
overflow: auto
}
</style>
</head>
<body>
<div id="wrap" class="flex-wrap flex-vertical">
<header>
<ul>
<li class="border-b active" >产品介绍</li>
<li class="border-b" >维护说明</li>
<li class="border-b" >防伪查询</li>
<li class="border-b" >咨询服务</li>
</ul>
</header>
<div id="main" class="flex-con">
</div>
<div id="footer" class="border-t">
<ul class="flex-wrap" >
<li tapmode="hover" onclick="randomSwitchBtn( this );" class="flex-con active" >产品介绍</li>
<li tapmode="hover" onclick="randomSwitchBtn( this );" class="flex-con" >维护说明</li>
<li tapmode="hover" onclick="randomSwitchBtn( this );" class="flex-con" >防伪查询</li>
<li tapmode="hover" onclick="randomSwitchBtn( this );" class="flex-con" >咨询服务</li>
</ul>
</div>
</div>
</body>
</html>
<script type="text/javascript" src="script/api.js"></script>
<script type="text/javascript" src="script/jquery.min.js"></script>
<script type="text/javascript">
apiready = function () {
$api.fixStatusBar( $api.dom('header') );
api.setStatusBarStyle({
style: 'dark',
color: '#6ab494'
});
funIniGroup();
}
function funIniGroup(){
frames=[
{
name:'frame1',
url:'http://www.zuanjingbeng.cn/text1.html'
},
{
name:'frame2',
url:'http://www.zuanjingbeng.cn/text12.html'
},
{
name:'frame3',
url:'http://biaodan.info/q/s0li4f'
},
{
name:'frame4',
url:'./66.html'
}
];
api.openFrameGroup({
name: 'group',
scrollEnabled: false,
rect: {
x: 0,
y: $api.dom('header').offsetHeight,
w: api.winWidth,
h: $api.dom('#main').offsetHeight
},
index: 0,
frames: frames
}, function (ret, err){}
);
}
function randomSwitchBtn( tag ) {
if( tag == $api.dom('#footer li.active') )return;
var eFootLis = $api.domAll('#footer li'),
eHeaderLis = $api.domAll('header li'),
index = 0;
for (var i = 0,len = eFootLis.length; i < len; i++) {
if( tag == eFootLis[i] ){
index = i;
}else{
$api.removeCls(eFootLis[i], 'active');
$api.removeCls(eHeaderLis[i], 'active');
}
}
$api.addCls( eFootLis[index], 'active');
$api.addCls( eHeaderLis[index], 'active');
api.setFrameGroupIndex({
name: 'group',
index: index
});
}
</script>