JQuery 不在 focusout 上触发

JQuery not triggering on focusout

我 运行 一个商业网站,我正在尝试在客户端阻止某些免费电子邮件地址未在我的网站上注册(服务器端将单独处理)。我看了一些帖子并在 .

上找到了 skinsey 的答案

我必须对代码进行的唯一真正更改是在输入框的 focusout 上触发检查,然后显示一条消息并清除输入框。

我是 JQuery 的新手,不明白为什么当输入框失去焦点时下面的代码没有触发。

有问题的元素是:

<input type="email" name="email" id="inputEmail" placeholder="your contact email">

我的JQuery如下:

jQuery('#inputEmail').focusout(function(){

    // Get the email value from the input with an id="inputEmail"
    var email_addr = jQuery('#inputEmail').val();

    // The regex to check it against
    var re = '[a-zA-Z_\.-]+@((hotmail)|(yahoo)|(gmail)|(outlook)|(protonmail)|(aol))\.[a-z]{2,4}';

    // Check if the email matches
    if(email_addr.match(re)){
        // Email is on the filter list
        // Return false and don't submit the form, or do whatever
        jQuery('#inputEmail').value = "";
        jQuery('#inputEmail').append("<div>To prevent SPAM, free email addresses are no longer accepted on registration. Please enter a valid coorporate email address.</div>");
        
        return false;
    } else {
        // Email ok
        // Allow the form to be submitted
        return true;
    }
});
</script>

我觉得我缺少一些简单的东西。

非常感谢任何帮助。

你可以试试这个

$('#inputEmail').on( "focusout", function(){
console.log('Focus Removed')
} );
$(document).on("focusout","#inputEmail",function(){
        alert("Focus Removed");
    });