只有在输入文本是像example.com

时间:2016-04-04 09:50:12

标签: javascript jquery ajax

如果用户输入有效域,我想执行whois查询。此查询应使用AJAX完成。

如果用户在表单字段中键入内容,此脚本将始终调用函数checkDomain()

js = jQuery.noConflict();
js(document).ready(function() {
    jQuery('#jform_domain').keyup(function() {
        checkDomain();
    });
});

function checkDomain() {
    var $this = jQuery(this);
    jQuery.ajax({
        url: '<?php echo JUri::root(); ?>/index.php',
        dataType: 'json',
        type: 'POST',
        data: {
            option: 'com_domaincheck',
            format: 'json',
            task: 'domain.checkDomain',
            domain: jQuery("#jform_domain").val(),
            '<?php echo JSession::getFormToken(); ?>': 1
        },
        success: function(response) {
            if (response.success) {
                console.log(response);
                jQuery("#test").html(response.message);
                // if (response.message == true) {} else {}
            } else {
                alert(response.message);
            }
        },
        error: function(data) {
            //console.log(data);
        }
    });
};

现在我想减少不必要的操作并仅启动脚本,如果用户输入了以下域:

example.com

如果脚本会将www.example.comhttp(s)://www.example.com等输入更改为example.com,那将真的非常非常酷。

我是JS和jQuery的初学者,所以请不要因为我的不良知识而责备我 - 我试着学习; - )

1 个答案:

答案 0 :(得分:1)

您需要使用Regex进行域检查。我使用了一个基本的正则表达式,你可以修改这个正则表达式或使用另一个正则表达式来满足你的需要。

$(document).ready(function() {

    $regExDomain = /^[a-zA-Z0-9][a-zA-Z0-9-]{1,61}[a-zA-Z0-9]\.[a-zA-Z]{2,}$/;

    $('#domain_name').on('keyup', function(){
        if($regExDomain.test($(this).val() ) ){
           console.info("valid domain");
        }else{
           console.info("invalid domain");
           return false;
        }
        console.log("Valid domain");
        checkDomain();//domain is valid so call your ajax function
    });

});