gpt4 book ai didi

jquery - 如何从 Controller 调用 jQuery(从 Devise 注册路径后)?

转载 作者:行者123 更新时间:2023-12-01 04:19:54 24 4
gpt4 key购买 nike

我不知道是否有可能 - 在用户注册时调用 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>

最佳答案

您的代码中有一个额外的 ):

 if($('.alert').val()=='Welcome! You sign up.')) 
// -----------^

试试这个:

if ( $('.alert').val() == 'Welcome! You sign up.' ) {
$('#congrats').show();
}

对于 div 元素,您应该使用 text() 而不是 val():

if ( $('.alert').text() == 'Welcome! You have signed up successfully.' ) {
$('#congrats').show();
}

关于jquery - 如何从 Controller 调用 jQuery(从 Devise 注册路径后)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11628991/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com