求帮助,html网页按钮怎么无法提交
下面这些是源代码,想请教论坛大神们,就是为什么表单无法提交,哪里出错了,网页的排版什么在本地的Stylel里面,这个网站是在网上下载的,想修改一下,怎样提交表单信息,谢谢!在线急等,解决一定加分
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<script id="allmobilize" charset="utf-8" src="style/js/allmobilize.min.js"></script>
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link rel="alternate" media="handheld" />
<!-- end 云适配 -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>漳州人才网</title>
<script language="javascript">
function yanzheng()
{
var email=document.loginForm.email.value;
var password=document.loginForm.password.value;
if (email.length==0)
{
return false;
}
if(password.length==0)
{
return false;
}
return true;
}
</script>
<meta property="qc:admins" content="23635710066417756375" />
<meta name="baidu-site-verification" content="QIQ6KC1oZ6" />
<!-- <div class="web_root" style="display:none">h</div> -->
<script type="text/javascript">
var ctx = "h";
console.log(1);
</script>
<link rel="Shortcut Icon" href="h/images/favicon.ico">
<link rel="stylesheet" type="text/css" href="style/css/style.css"/>
<script src="style/js/jquery.1.10.1.min.js" type="text/javascript"></script>
<script type="text/javascript" src="style/js/jquery.lib.min.js"></script>
<script type="text/javascript" src="style/js/core.min.js"></script>
<script type="text/javascript">
var youdao_conv_id = 271546;
</script>
<script type="text/javascript" src="style/js/conv.js"></script>
</head>
<body id="login_bg">
<div class="login_wrapper">
<div class="login_header">
<a href="h/"><img src="images/123456.png" width="335" height="70" /></a>
<div id="cloud_s"><img src="style/images/cloud_s.png" width="81" height="52" alt="cloud" /></div>
<div id="cloud_m"><img src="style/images/cloud_m.png" width="136" height="95" alt="cloud" /></div>
</div>
<input type="hidden" id="resubmitToken" value="9b207beb1e014a93bc852b7ba450db27" />
<div class="login_box">
<form id="loginForm" name="loginForm" action="shouye.html" onsubmit=" return yanzheng()">
<ul class="register_radio clearfix">
<li>
找工作
<input type="radio" value="0" name="type" />
</li>
<li>
招人
<input type="radio" value="1" name="type" />
</li>
</ul>
<input type="text" id="email" name="email" tabindex="1" placeholder="请输入常用邮箱地址" />
<span class="error" style="display:none;" id="beError"></span>
<input type="password" id="password" name="password" tabindex="2" placeholder="请输入密码" />
<label class="fl registerJianJu" for="checkbox">
<input type="checkbox" id="checkbox" name="checkbox" checked class="checkbox valid" />
我已阅读并同意<a href="h/privacy.html" target="_blank">《网站注册用户协议》</a>
</label>
<input type="submit" id="submitLogin" value="注 册" />
<input type="hidden" id="callback" name="callback" value=""/>
<input type="hidden" id="authType" name="authType" value=""/>
<input type="hidden" id="signature" name="signature" value=""/>
<input type="hidden" id="timestamp" name="timestamp" value=""/>
</form>
<div class="login_right">
<div>已有拉勾帐号</div>
<a href="login.html" class="registor_now">直接登录</a>
<div class="login_others">使用以下帐号直接登录:</div>
<a href="h/ologin/auth/sina.html" target="_blank" class="icon_wb" title="使用新浪微博帐号登录"></a>
<a href="h/ologin/auth/qq.html" class="icon_qq" target="_blank" title="使用腾讯QQ帐号登录" ></a>
</div>
</div>
<div class="login_box_btm"></div>
</div>
<script type="text/javascript">
$(document).ready(function(e) {
$('.register_radio li input').click(function(e){
$(this).parent('li').addClass('current').append('<em></em>').siblings().removeClass('current').find('em').remove();
});
$('#email').focus(function(){
$('#beError').hide();
});
//验证表单
$("#loginForm").validate({
rules: {
type:{
required: true
},
email: {
required: true,
email: true
},
password: {
required: true,
rangelength: [6,16]
},
checkbox:{required:true}
},
messages: {
type:{
required:"请选择使用人才网的目的"
},
email: {
required: "请输入常用邮箱地址",
email: "请输入有效的邮箱地址,如:vivi@lagou.com"
},
password: {
required: "请输入密码",
rangelength: "请输入6-16位密码,字母区分大小写"
},
checkbox: {
required: "请接受拉勾用户协议"
}
},
errorPlacement:function(label, element){/*
if(element.attr("type") == "radio"){
label.insertAfter($(element).parents('ul')).css('marginTop','-20px');
}else if(element.attr("type") == "checkbox"){
label.inserresult.contenttAfter($(element).parent()).css('clear','left');
}else{
label.insertAfter(element);
} */
/*modify nancy*/
if(element.attr("type") == "radio"){
label.insertAfter($(element).parents('ul')).css('marginTop','-20px');
}else if(element.attr("type") == "checkbox"){
label.insertAfter($(element).parent()).css('clear','left');
}else{
label.insertAfter(element);
};
},
submitHandler:function(form){
var type =$('input[type="radio"]:checked',form).val();
var email =$('#email').val();
var password =$('#password').val();
var resubmitToken = $('#resubmitToken').val();
var callback = $('#callback').val();
var authType = $('#authType').val();
var signature = $('#signature').val();
var timestamp = $('#timestamp').val();
$(form).find(":submit").attr("disabled", true);
$.ajax({
type:'POST',
data: {email:email,password:password,type:type,resubmitToken:resubmitToken, callback:callback, authType:authType, signature:signature, timestamp:timestamp},
url:ctx+'/user/register.json',
dataType:'json'
}).done(function(result) {
$('#resubmitToken').val(result.resubmitToken);
if(result.success){
window.location.href=result.content;
}else{
$('#beError').text(result.msg).show();
}
$(form).find(":submit").attr("disabled", false);
});
}
});
});
</script>
</body>
</html>