驗證外掛程式——jquery.validate.js

來源:互聯網
上載者:User

標籤:pat   strong   尾碼   add   code   通過   eth   檔案   問題:   

:http://download.csdn.net/download/s592652578/9457421

教程:http://www.runoob.com/jquery/jquery-plugin-validate.html

 

外掛程式問題:

1.對<input type="file">檔案上傳按鈕作用不大,無法驗證檔案類型,檔案選中後無法驗證,需要移除焦點才能驗證

解決辦法】:驗證檔案類型:(通過添加自訂方法)

 1 jQuery.validator.addMethod("checkPic", function(value, element) { 2     var filepath=$("#logo").val(); 3     //獲得上傳檔案名稱 4     var fileArr=filepath.split("\\"); 5     var fileTArr=fileArr[fileArr.length-1].toLowerCase().split("."); 6     var filetype=fileTArr[fileTArr.length-1]; 7     //切割出尾碼檔案名稱 8     if(filetype != "jpg"){ 9         return false;10     }else{11         return true;12     }13 }, "上傳圖片格式不適合");

 

 

驗證外掛程式——jquery.validate.js

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.