jQuery Formly 註冊表單

由 andy 發表於 六月 2, 2011 / 尚無評論

今天在逛網站時剛好發現這個還不錯的表單jQuery 花了一點時間把JS 中文化(提示等相關訊息)  分享出來

教學

DEMO

下載完整範例

各參數

label : (string) useful for notifications
place : (string) place holder 預設文字在textbox內
pre-fix : (string) pretty self-explanatory 出現前置詞
require : (true or false) force user input 驗證必須
match : (string) name of input that it must match 驗證欄位相等
validate : (string) 'email' or 'http' 驗證電子郵件或網址

 

 

HTML

直接看範例應該就知道要改哪邊

<form id="MyForm" width="200px" title="註冊" subtitle="免費註冊,免費使用">

<input type="text" name="Name" place="姓名" />

<input type="text" name="Email" validate="email" place="電子郵件" />

<input type="text" name="Username" place="帳號" require="true" label="賬號" pre-fix="" />

<input type="password" name="Password" require="true" label="密碼" place="密碼" />

<input type="password" name="PasswordMatch" match="Password" label="重複密碼" place="重複密碼" />

<input type="text" name="WebUrl" validate="http" place="個人網站" />

<input type="submit" value="註冊" /><input type="reset" value="清除" />

</form>

 

Javascript

可設定樣版都還蠻有直感的

<script>
$(document).ready(function()
  { $('#MyForm').formly({'onBlur':false, 'theme':'Light'}); });
</script>

theme : Light/Dark

 

關於作者

喜愛閱讀心理學與程式,資訊技術相關書籍,電影偏愛血淋淋,需要動腦的懸疑解謎,災難科幻類型.平時運動:游泳,慢跑等...最愛的一句話: Divide and Conquer! 無法掌握現在,如何談及未來!目前職業是程式設計師.

評論

此文章尚無評論。

發表評論

*