JavaScript實現資料驗證

來源:互聯網
上載者:User

標籤:javascript

BS項目開發中,我們經常需要對資料進行判斷,在特定的場合,需要對輸入的字數進行限制,最近遇到了一個問題。

         平時都是在後台進行資料驗證,可是後台驗證有一個確定,就是反應比較慢,代碼如下。

 

if(txtCheckTest.Text.Count() >10)    {       modelState.AddModelError("ReadDescription","閱辦事項不能超過10個字!");}

效果如下:

 

最大的問題是,客戶在輸入過程中,其實並不知道輸入了多少字,等到提交的時候發現輸入內容不符合要求,這樣,使用者體驗度不好。假如我們在使用者輸入過程中給予及時的提醒,那麼,就可以很方便的將訊息反饋給客戶,增加使用者體驗度。

前台代碼如下:

<scriptlanguage="javascript" type="text/javascript">        //為文字框設定提示        function SetPromptAndFormat(id, prefix,suffix, defaultValue) {            var inputCtrl = $("#" +id);            var formatPrompt = prefix +defaultValue + suffix;            if (inputCtrl.val().length < 1){                //inputCtrl.val(formatPrompt);               //inputCtrl.addClass("prompt");            }            inputCtrl.blur(function () {                if (inputCtrl.val().length <1) {                   //inputCtrl.val(formatPrompt);                   //inputCtrl.addClass("prompt");                } else {                    inputCtrl.val(prefix +inputCtrl.val() + suffix);                }            });            inputCtrl.focus(function () {                if (inputCtrl.val() ==formatPrompt && inputCtrl.attr("class") =="prompt") {                   inputCtrl.removeClass("prompt");                   inputCtrl.val("");                } else {                    var removeprefix =inputCtrl.val().substring(prefix.length, inputCtrl.val().length);                    var removesuffix =removeprefix.substr(0, removeprefix.lastIndexOf(suffix));                   inputCtrl.val(removesuffix);                }            });        }$(document).ready(function() {           SetPromptAndFormat("Data_Title", "關於","的事項確認", "***");            SetTextareaMaxlength("Data_Title", 30);           SetTextareaMaxlength("Data_Abstract", 800);           SetTextareaMaxlength("Data_Explain", 100);           SetTextareaMaxlength("Data_Description", 300);        });    </script>


這樣寫的話,使用者在輸入數字超過限制時,將不能繼續輸入,可以最大限度的節約客戶時間,提高體驗度。

JavaScript實現資料驗證

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.