熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

利用jquery驗證銀行卡號信息

2022-06-13   來源: JSP教程 

  $("#bankAccountNumber")change(function(){
alert("");
var account = $("channelFormbankAccountaccount")val();
alert("");
var reg = /^d{}$/g; // 以位數字開頭位數字結尾
if( !regtest(account) )
{
alert("格式錯誤應該是位數字!");
}

})

  <!DOCTYPE html PUBLIC "//WC//DTD XHTML Transitional//EN" "
<html xmlns="
<head>
<meta httpequiv="ContentType" content="text/html; charset=gb" />
<title>驗證銀行賬號</title>
<style type="text/css">
<!
STYLE {color: #FF}
>
</style>
<script language="javascript" type="text/javascript">
function check()
{
var account = documentformaccountvalue;
var reg = /^d{}$/g; // 以位數字開頭位數字結尾
if( !regtest(account) )
{
alert("格式錯誤應該是位數字!");
}
else
{
alert("驗證成功!");
}
}
</script>
</head>

  <body>
<form id="form" name="form" method="post" action="">
<p>賬號
<input type="text" name="account" id="account" />
  <span class="STYLE">* (位數字)</span></p>
<p>   
<input type="button" name="button" id="button" value="驗證" onclick="check()" />
</p>
</form>
</body>
</html>


From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20379.html
  • 上一篇文章:

  • 下一篇文章:
  • 推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.