這是我的驗證代碼如何使用jquery驗證的遠程方法?
3210
-3
A
回答
0
有jQuery的plugin頁面上的遠程方法很容易解釋。
根據我對你的建議!要更好地理解該方法,請使用中的方法展開表單。
emailId: {
required: true,
email: true,
remote: {
url: "checkmail.php", //the url of the page you are querying
type: "post", //the method you are going to use to send the data
data: { //the data you are going to send
email: function() {
return $("#email").val(); //send the value of email
}
}
}
},
但是,您的代碼應該按照它的方式工作。
相關問題
- 1. jquery驗證遠程方法
- 2. jQuery驗證:遠程方法
- 3. 遠程操作方法沒有使用jQuery驗證驗證
- 4. jquery驗證插件遠程方法
- 5. JQuery驗證選擇遠程方法
- 6. 如何中止遠程Jquery的驗證方法應提交
- 7. 使用jQuery表單驗證遠程方法驗證上傳的文件大小
- 8. 使用JQuery驗證遠程方法與陣列
- 9. 遠程方法使用jquery驗證插件
- 10. 問題在jQuery驗證使用遠程方法
- 11. 使用jQuery驗證的遠程功能
- 12. jQuery的valiation:使用遠程驗證
- 13. jquery遠程驗證
- 14. jQuery遠程驗證
- 15. jQuery驗證遠程
- 16. jquery驗證遠程調用
- 17. jQuery驗證的遠程方法的使用,如果用戶名已經存在
- 18. 當我使用jQuery驗證遠程
- 19. 使用ASP.NET MVC2和jQuery遠程驗證
- 20. 幫我用jQuery驗證插件的遠程方法
- 21. jQuery驗證addMethod使用JQuery驗證驗證定製方法
- 22. 如何重置Jquery遠程驗證
- 23. JQuery驗證的遠程驗證規則失敗(使用MVC 2)
- 24. 如何訪問使用jQuery進行遠程驗證的當前元素驗證
- 25. jquery驗證遠程函數
- 26. JQuery驗證遠程JSFiddle
- 27. JQuery驗證遠程錯誤
- 28. jquery遠程驗證修改
- 29. jQuery遠程驗證幫助
- 30. Spring MVC jQuery遠程驗證
您能否擴展您的問題? – hsz 2012-07-13 06:10:23
phpinclude('lib1/config_global.php')的電子郵件可用性代碼; include('lib1/functions.php'); $ emailId = $ _REQUEST [「emailId」]; if($ emailId ==「[email protected]」){ echo「false」; } else { echo「true」; } – Sachin 2012-07-13 06:11:34
它代碼正在工作。當我從數據庫中提取不工作 – Sachin 2012-07-13 06:12:43