0
有沒有一種簡單的方法可以在Rails應用程序中添加表單驗證:「您確定要提交一個空主題的表單嗎?」rails form validation empty filed
(我用Google搜索「你確定」空軌,驗證空等,並沒有找到一個有用的答案)如果你想在用戶之前驗證提交
有沒有一種簡單的方法可以在Rails應用程序中添加表單驗證:「您確定要提交一個空主題的表單嗎?」rails form validation empty filed
(我用Google搜索「你確定」空軌,驗證空等,並沒有找到一個有用的答案)如果你想在用戶之前驗證提交
,你可以嘗試這樣的事:
<%= f.submit :onclick => "show_custom_confirm()" %>
<% javascript_tag do %>
function show_custom_confirm() {
if ('#my_field').val() == '')
return #{confirm_javascript_function("You'll submit with an empty field. Are you sure?")};
}
<% end %>
http://stackoverflow.com/questions/808547/fully-custom-validation-error-message-with-rails –