僅一個form表單 js實現(xiàn)注冊信息依次填寫提交功能
我們原先是一個很長的form表單,里面有很多選項??蛻舴答佭@樣不夠友好,容易看花眼。因此進(jìn)行改進(jìn),實現(xiàn)多步驟進(jìn)度,多個提交的實現(xiàn)(其實只有一個form提交)。
實現(xiàn)的思路:將表單的選項裝入多個div中,一個顯示,其他隱藏。
實現(xiàn)效果如下:

1、JavaScript代碼
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery-powerFloat.js"></script>
<link rel="stylesheet" href="css/powerFloat.css" type="text/css" />
<script type="text/javascript">
$(function() {
$(".pwdTrigger").powerFloat({
eventType : "focus",
targetMode : "remind",
targetAttr : "placeholder",
position : "2-1"
});
});
</script>
<script type="text/javascript">
function one() {
if (confirm("確定提交?")) {
$("#one").hide();
$("#two").show();
$("#grxx").attr("class","current_prev");
$("#zjxx").attr("class","current");
}
}
function two() {
if (confirm("確定提交?")) {
$("#two").hide();
$("#three").show();
$("#grxx").attr("class","done");
$("#zjxx").attr("class","current_prev");
$("#qzxx").attr("class","current");
}
}
function three() {
if (confirm("確定提交?")) {
$("#three").hide();
$("#four").show();
$("#grxx").attr("class","done");
$("#zjxx").attr("class","done");
$("#qzxx").attr("class","current_prev");
$("#qzfs").attr("class","current");
}
}
function reone() {
if (confirm("確定返回?")) {
$("#one").show();
$("#two").hide();
$("#grxx").attr("class","current");
$("#zjxx").attr("class","");
}
}
function retwo() {
if (confirm("確定返回?")) {
$("#three").hide();
$("#two").show();
$("#grxx").attr("class","current_prev");
$("#zjxx").attr("class","current");
$("#qzxx").attr("class","");
}
}
function rethree() {
if (confirm("確定返回?")) {
$("#four").hide();
$("#three").show();
$("#grxx").attr("class","done");
$("#zjxx").attr("class","current_prev");
$("#qzxx").attr("class","current");
$("#qzfs").attr("class","last");;
}
}
</script>
2、CSS代碼
<style type="text/css">
.flow_steps ul li { float:left; height:23px; padding:0 40px 0 30px; line-height:23px; text-align:center; background:url(img/barbg.png) no-repeat 100% 0 #E4E4E4; font-weight:bold;}
.flow_steps ul li.done { background-position:100% -46px; background-color:#FFEDA2;}
.flow_steps ul li.current_prev { background-position:100% -23px; background-color:#FFEDA2;}
.flow_steps ul li.current { color:#fff; background-color:#990D1B;}
.flow_steps ul li.last { background-image:none;}
</style>
3、HTML代碼
<body>
<table width="600px">
<tr>
<td>
<div class="flow_steps">
<ul style="list-style-type:none">
<li id="grxx" class="current">個人信息</li>
<li id="zjxx" >證件信息</li>
<li id="qzxx">簽注信息</li>
<li id="qzfs" class="last">取證方式</li>
</ul>
</div>
</td>
</tr>
<tr><td>
<form action="">
<div id="one">
<table align="center">
<tr>
<td>戶口所在地:</td>
<td><input class="pwdTrigger" type="text" placeholder="請輸入戶口所在地" /></td>
</tr>
<tr>
<td>中文姓:</td>
<td><input class="pwdTrigger" type="text" placeholder="請輸入中文姓" /></td>
</tr>
<tr>
<td>中文名:</td>
<td><input class="pwdTrigger" type="text" placeholder="請輸入中文名" /></td>
</tr>
<tr>
<td>身份證號:</td>
<td><input class="pwdTrigger" type="text" placeholder="請輸入身份證號碼" /></td>
</tr>
<tr>
<td colspan="2">
<button type="button" onclick="one()">提交</button>
</td>
</tr>
</table>
</div>
<div id="two" style="display: none">
<table align="center">
<tr>
<td>通行證號</td>
<td><input class="pwdTrigger" type="text" placeholder="請輸入證件號碼" /></td>
</tr>
<tr>
<td>有效日期至</td>
<td><input class="pwdTrigger" type="text" placeholder="請輸入證件號碼" /></td>
</tr>
<tr>
<td>聯(lián)系電話</td>
<td><input class="pwdTrigger" type="text" placeholder="請輸聯(lián)系電話,建議是手機號碼" /></td>
</tr>
<tr >
<td >
<button type="button" onclick="two()">提交</button>
</td>
<td>
<button type="button" onclick="reone()">上一步</button>
</td>
</tr>
</table>
</div>
<div id="three" style="display: none">
<table align="center">
<tr>
<td>簽注類別</td>
<td><input class="pwdTrigger" type="text" placeholder="請輸入簽注類別" /></td>
</tr>
<tr>
<td>前往地</td>
<td><input class="pwdTrigger" type="text" placeholder="請輸入前往地" /></td>
</tr>
<tr>
<td>簽證種類</td>
<td><input class="pwdTrigger" type="text" placeholder="請輸入簽注種類" /></td>
</tr>
<tr >
<td >
<button type="button" onclick="three()">提交</button>
</td>
<td>
<button type="button" onclick="retwo()">上一步</button>
</td>
</tr>
</table>
</div>
<div id="four" style="display: none">
<table align="center">
<tr>
<td>取證方式</td>
<td><input class="pwdTrigger" type="text" placeholder="請輸入取證方式" /></td>
</tr>
<tr >
<td >
<button type="button" onclick="">提交</button>
</td>
<td>
<button type="button" onclick="rethree()">上一步</button>
</td>
</tr>
</table>
</div>
</form>
</td>
</tr>
</table>
</body>
</html>
源碼下載:http://xiazai.jb51.net/201606/yuanma/JavaScript-formshow(jb51.net).rar
以上就是本文的全部內(nèi)容,希望對大家學(xué)習(xí)JavaScript程序設(shè)計有所幫助。
相關(guān)文章
ES6 let和const定義變量與常量的應(yīng)用實例分析
這篇文章主要介紹了ES6 let和const定義變量與常量的應(yīng)用,結(jié)合實例形式分析了ES6使用let定義變量以及使用const定義常量的相關(guān)操作技巧,需要的朋友可以參考下2019-06-06
利用Plupload.js解決大文件上傳問題, 帶進(jìn)度條和背景遮罩層
本篇文章主要介紹了c#+Plupload.js解決大容量文件上傳問題, 帶進(jìn)度條和背景遮罩層,具有一定的參考價值,感興趣的小伙伴們可以參考一下。2017-03-03
解析javascript瀑布流原理實現(xiàn)圖片滾動加載
這篇文章主要幫助大家解析javascript瀑布流原理,實現(xiàn)js圖片滾動加載2016-03-03
交叉觀察器?IntersectionObserver用法詳解
這篇文章主要為大家介紹了交叉觀察器?IntersectionObserver用法詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-10-10
javascript showModalDialog 多層模態(tài)窗口實現(xiàn)頁面提交及刷新的代碼
javascript 多層模態(tài)窗口showModalDialog頁面提交及刷新2009-11-11

