我具有重新发送激活电子邮件的功能。
当用户尝试登录并且未激活用户时,会显示一条带有链接的消息(您可以在下面看到)。
它根本不起作用。如果我正确的话,甚至无法达到js函数。
可能是什么问题?请帮帮我。
调用该函数的链接:
<a href="#" email="'.$this->input->post('email').'" id="resend_activation">Aktiváló e-mail újraküldése</a>
JS代码:
$(document).on('click', '#resend_activation', function() {
var email = $(this).attr('email');
$("#success_msgforword").hide();
$(".errors").hide();
$.ajax({
type: "GET",
url: base_url + "aktivalo-ujrakuldes?email=" + email,
dataType: "json",
success: function(data) {
if (data == 0) {
$(".errors").html('Error! You are logged in!').show();
} else if (data == 1) {
$(".errors").html('');
$(".success_msgforword").html('Success, you wil receive an email from us shortly.').show();
}
}
});
});