我不知道是否有可能 - 在用户注册时调用 jQuery。
我正在使用 Rails 和 Devise gem,所以我有 after_sign_up_path:
def after_sign_up_path_for(resource)
edit_user_registration_path(current_user)
//call jQuery
end
或者如果这是不可能的 - 为什么我的 js 不工作:
if($('.alert').val()=='Welcome! You have signed up successfully.'))
$('#congrats').show();
编辑:HTML
<div class="alert alert-notice">Welcome! You have signed up successfully.</div>