如何检查输入在JavaScript中有一个字符串

时间:2017-06-02 07:08:45

标签: javascript jquery html events html-input

我在HTML输入中有自动完成的代码:

$("#myinput")
    .bind("keydown", function(event) {
        // don't navigate away from the field on tab when selecting an item
        if (event.keyCode === $.ui.keyCode.TAB 
                                   && $(this).data("autocomplete").menu.active) {
            event.preventDefault();
        }
    })
    .autocomplete({
        minLength: 0,
        source: function(request, response) {
            var results = [],
                selectionStart = this.element[0].selectionStart
                term = extractLast(request.term.substring(0, selectionStart));

                if (term.length > 0) {
                    console.log(term);
                if(/*input has string "where"*/)
                results = $.ui.autocomplete.filter(table1, term);
                else
                results = $.ui.autocomplete.filter(table2, term);   
            }
            response(results);
        },
        focus: function() {
            return false; // prevent value inserted on focus
        },
        select: function(event, ui) {
            var terms = split(this.value.substring(0, this.selectionStart));
            terms.pop();  // remove the current input
            terms.push(ui.item.value);        // add the selected item
            this.value = 
                $.trim(terms.join(" ") + this.value.substring(this.selectionStart)) + " ";
            return false;
        }
    });

我想要做的是如果输入在某处有字符串“where”,那么它将从table1加载自动完成,否则它将从table2加载。如何检查输入是否包含该字符串?提前谢谢。

4 个答案:

答案 0 :(得分:1)

您应该使用includes方法。

var inputValue=$("#myinput").val();
if(inputValue.toLowerCase().includes("where")){
    //rest of code
}

另一种方法是使用indexOf方法。

if(inputValue.indexOf("where")!==-1){
    //rest of code
}

如果您想使用regex来实现此目标,可以使用search方法。

if(inputValue.search(/where/i)!==-1){
    //rest of code
}

inputValue="awherea";
console.log(inputValue.search(/where/))

答案 1 :(得分:0)

如果您想获得最强大的浏览器支持,请使用String#indexOf

if(this.value.indexOf('where') > -1) {
   //doSomething
}

答案 2 :(得分:0)

您可以获取文本值并使用indexof来查找它。

my_inp = $("#myinput").val();
if (my_inp.indexOf('where') > -1) {
   console.log('yes');
}

答案 3 :(得分:0)

尝试使用string#match方法,使用ternary operator返回true或false

还有一些更多的方法

  1. string.indexOf()
  2. string.includes()
  3. console.log('hello everyone'.match("hello") ? true : false)

    对于jquery,您可以使用contains()方法

    console.log($('p').is(':contains("hi")')) 
    console.log($('p').is(':contains("22")')) // not contains
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    <p>hello hi</p>