如果条件推送包含/匹配字符串的值



我有一个功能良好的完整日历脚本。我有一些过滤器,基本上有以下形式:

$("input[name='event_filter_select']:checked").each(function () {
    // I specified data-type attribute in HTML checkboxes to differentiate
    // between risks and tags.
    // Saving each type separately
    if ($(this).data('type') == 'risk') {
        risks.push($(this).val());
    } else if ($(this).data('type') == 'tag') {
        tagss.push($(this).val());
    }
});

但是,else if语句应该检查检查的值"tag"是否包含在结果集中,而不是结果集中的唯一值(如==所暗示的)。

现在,我只能过滤那些只包含已检查标记值的结果。但我想过滤那些,其中有标签值的许多其他。

我想这是用match(/'tag'/)完成的,但我一辈子都不知道如何将其放入if语句中。

如果有人能把我带向正确的方向,我会非常高兴。

我只想做:

...
if ($(this).data('type') == 'risk') {
    risks.push($(this).val());
} else if ($(this).data('type').test(/^tag/) {
    tagss.push($(this).val());
}
...

如果"标记"必须位于字符串的开头,则此操作有效
如果"标记"可以在字符串中的任何位置,则可以使用test(/tag/)

如果您的数据是字符串,例如:tag filter1 filter2 filter3,您可以使用indexOf函数(手动)

代码:

if ($(this).data('type').indexOf("risk") != -1))
   //Action here.

如果未找到文本,则indexOf返回-1

您可以使用:

var re = new RegExp('\b' + word + '\b', 'i');

或者,如果您希望将单词硬编码(例如,在本例中,单词test):

var re = /btestb/i 

显示以下匹配项的示例:

var input = document.querySelector('input');
var div = document.querySelector('div');
var re;
var match;
input.addEventListener('keyup', function() {
  match = input.value.trim();
  re = new RegExp('\b' + match + '\b', 'i');
  
  if($('div').data('type').match(re))
    div.innerHTML = 'Matched the word: ' + '<strong>' + match + '</strong>';
  else div.innerHTML = 'Did not match the word: ' + '<strong>' + match + '</strong>';
    
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
Word to match:<input></input><br>
Output:
<div data-type='tag tags test'></div>

将上面的正则表达式合并到代码中后,它应该看起来像这样:

else if ($(this).data('type').match(/btagb/i) { //true for data-type that has `tag` in it.
    tagss.push($(this).val());
}

尝试使用此条件。

   /btagb/.test($(this).data('type'))

相关内容

  • 没有找到相关文章

最新更新