...
|
...
|
@@ -16,7 +16,7 @@ |
|
|
<body>
|
|
|
<div class="container">
|
|
|
<div class="inquary_box">
|
|
|
<form id="form1">
|
|
|
<form id="apply_link_form">
|
|
|
<div class="content_item">
|
|
|
<div class="tab_title">进修培训基本资料</div>
|
|
|
<div class="info_box">
|
...
|
...
|
@@ -109,7 +109,6 @@ |
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<input id="submit" name="submit" type="submit" value="提交申请" >
|
|
|
<div class="agree_btn submit train_btn">提交</div>
|
|
|
</form>
|
|
|
</div>
|
...
|
...
|
@@ -156,12 +155,12 @@ |
|
|
|
|
|
|
|
|
$('.submit').click(function (res) {
|
|
|
console.log($('#form1').serialize());
|
|
|
console.log($('#apply_link_form').serialize());
|
|
|
$.ajax({
|
|
|
type: "POST",//方法类型
|
|
|
dataType: "json",//预期服务器返回的数据类型
|
|
|
url: "/users/login" ,//url
|
|
|
data: $('#form1').serialize(),
|
|
|
data: $('#apply_link_form').serialize(),
|
|
|
success: function (result) {
|
|
|
console.log(result);//打印服务端返回的数据(调试用)
|
|
|
},
|
...
|
...
|
|