ag亚游集团官网会网址视频网上有吗?

The page is temporarily unavailable
nginx error!
The page you are looking for is temporarily unavailable.
Please try again later.
Website Administrator
Something has triggered an error on your
This is the default error page for
nginx that is distributed with
It is located
/usr/share/nginx/html/50x.html
You should customize this error page for your own
site or edit the error_page directive in
the nginx configuration file
/etc/nginx/nginx.conf.注: 带" * " 号为必填项
推荐码用于参与“推荐好友”优惠活动,您将获取丰厚免费奖金,详情请点击""
我确定我已年满18岁,及接受的、及
如果看不清验证码,请点击图片刷新.
$(document).ready(function() {
$.formValidator.initConfig({
validatorGroup : "1",
onError : function(msg) {
//alert(msg);
$.formValidator.initConfig({
validatorGroup : "3",
onError : function(msg) {
//alert(msg);
$("#loginName").formValidator({
validatorGroup : "1"
}).InputValidator({
onerror : "游戏账号由6~10位字母或数字"
}).RegexValidator({
regexp : "^[a-z0-9]*$",
onerror : "游戏账号由6~10位字母或数字"
}).AjaxValidator({
type : "post",
url : "/CheckCustomerExist.htm?prefix=ag",
datatype : "html",
async: true,
success : function(data) {
if (data == "true") {
error : function(data) {
alert("服务器没有返回数据,可能服务器忙,请重试");
onerror : "该游戏账号已经存在",
onwait : "正在进行校验,请稍候..."
$("#pwd").formValidator({
validatorGroup : "1"
}).InputValidator({
onerror : "游戏密码由6~10位字母或数字组成"
}).RegexValidator({
regexp : "^[a-z0-9A-Z]*$",
onerror : "游戏密码由6~10位字母或数字组成"
$("#confirmPwd").formValidator({
validatorGroup : "1"
}).InputValidator({
onerror : "确认游戏密码由6~10位字母或数字组成"
}).RegexValidator({
regexp : "^[a-z0-9A-Z]*$",
onerror : "确认游戏密码由6~10位字母或数字组成"
}).CompareValidator({
desID : "pwd",
operateor : "=",
onerror : "确认游戏密码与游戏密码输入要一致"
$("#phone").formValidator({
validatorGroup : "1"
}).InputValidator({
onerror : "联系电话由8~16位数字组成"
}).RegexValidator({
regexp : "^[0-9]*$",
onerror : "联系电话由8~16位数字组成"
}).AjaxValidator({
type : "post",
url : "/CheckPhoneExist.htm?customerType=1",
datatype : "html",
async: false,
success : function(data) {
if (data == "true") {
error : function(data) {
alert("服务器没有返回数据,可能服务器忙,请重试");
onerror : "该联系电话已经存在",
onwait : "正在进行校验,请稍候..."
$("#whoRecommendMe").formValidator({
validatorGroup : "1",
empty:true
}).InputValidator({
onerror : "推荐码由6位数字组成"
}).RegexValidator({
regexp : "^[0-9]*$",
onerror : "推荐码由6位数字组成"
}).AjaxValidator({
type : "post",
url : "/CheckRecommendCodeExist.htm?productId=B79",
datatype : "html",
async: false,
success : function(data) {
if (data == "true") {
error : function(data) {
alert("服务器没有返回数据,可能服务器忙,请重试");
onerror : "该推荐码不存在",
onwait : "正在进行校验,请稍候..."
$("#captchaCode2").formValidator({
validatorGroup : "1"
}).InputValidator({
$("#captchaCode").formValidator({
validatorGroup : "3"
}).InputValidator({
$("#icon_inside2_reg").click(function(){
$("#collapseExample2").removeClass("in");
$("#icon_inside3_trl").click(function(){
$("#collapseExample").removeClass("in");
$(".close").click(function(){
$("#collapseExample2").removeClass("in");
$("#collapseExample").removeClass("in");
onPageLoaded();
JD.FORM.ErrorTooltip({
position : {
my : 'top center',
at : 'bottom center'
$('#newloginform').submit(function() {
var loginname = jQuery('#loginform_loginname').val();
var varpassword = jQuery('#loginform_password').val();
var captcha = jQuery('#loginform_code').val();
if (loginname == '游戏账号' || loginname == '' || loginname.length == 0) {
JD.FORM.ErrorTooltip.show('#loginform_loginname', '请输入游戏账户');
$('#loginform_loginname').focus();
$('#loginform_loginname').val(loginname);
if (jQuery.trim(varpassword) == '' || jQuery.trim(varpassword).length == 0) {
if (jQuery('#loginform_password').css('display') == 'none') {
JD.FORM.ErrorTooltip.show('#passwordPlain', '请输入游戏密码');
JD.FORM.ErrorTooltip.show('#loginform_password', '请输入游戏密码');
swapPasswordBoxes('click');
if (captcha == '验证码' || captcha == '' || captcha.length == 0) {
JD.FORM.ErrorTooltip.show('#loginform_code', '请输入正确的验证码');
$('#loginform_code').focus();
$('#loginform_code').val(captcha);
$('#submitbtn').val('请稍侯');
$('#submitbtn').attr('disabled', 'disabled');
//$('#submitbtn').removeClass('btn-main').addClass('btn-sub');
JD.FORM.ErrorTooltip.hideAll();
jQuery('#loginform_loginname').bind('focus blur', {
defaultmessage : '游戏账号'
}, trick);
//jQuery('#loginform_password').bind('focus blur', {defaultmessage: ''}, trick);
jQuery('#loginform_code').bind('focus blur', {
defaultmessage : '验证码'
}, trick);
function trick(event) {
if (event.type == 'focus' && event.data.defaultmessage == jQuery(this).val()) {
jQuery(this).val('');
if (event.type == 'blur' && jQuery(this).val() == '') {
jQuery(this).val(event.data.defaultmessage);
function onPageLoaded() {
document.getElementById('loginform_password').style.display = "none";
document.getElementById('passwordPlain').style.display = "inline";
function swapPasswordBoxes(funcType) {
if (funcType == "click") {
document.getElementById('passwordPlain').style.display = "none";
document.getElementById('loginform_password').style.display = "inline";
document.getElementById('loginform_password').focus();
if (document.getElementById('loginform_password').value.length == 0) {
document.getElementById('passwordPlain').style.display = "inline";
document.getElementById('loginform_password').style.display = "none";
function newLoginSubmit() {
JD.FORM.ErrorTooltip.hideAll();
$("#newloginform").submit();
function inputStatusShowFun(v){
setTimeout(function(){
var this_class = $("#"+v+"Tip").prop("class");
$("#"+v+"Status").attr("class","status_"+this_class);
function sendDynamicVerifyCodeTop(){
JD.FORM.ErrorTooltip.hideAll();
var loginName = $("#loginform_loginname").val();
var opt = {
isBlockUI:false,
type:'post',
url:'/sendDynamicVerifyCode.htm?loginName='+ loginName,
cache:false,
dataType:'json',网友热点关注

我要回帖

更多关于 ag亚游网址 的文章

 

随机推荐