Javascript搜索子字符串

时间:2011-04-28 08:50:49

标签: javascript function string

我正在尝试编写一个javascript函数,它将搜索html页面中所有指定的div,以查找搜索栏中包含的子字符串。我怎么能这么做呢?

到目前为止,这是我的代码,我让它工作,以便showMe方法只显示所选的div,我只需要子串代码即可工作。有人可以帮忙吗?

   <html>

<head>
<script type="text/javascript"> 
<!-- 
function dynamicSearch() {
    var val = document.getElementById('search').value;
    if (val == '')
      val = '-1';
    var srch = new RegExp(val, "gi");
    var els = document.getElementsByClassName('row');
    for (var idx in els) {
      if (idx != parseInt(idx))
        continue;
      var el = els[idx];
      if (typeof(el.innerHTML) !== 'undefined') {
        console.log(el.innerHTML);
        if (srch.test(el.innerHTML)) {
          el.style.display = 'block';
        } else {
          el.style.display = 'none';
        }
      }
    }
  }

function showMe (it, box) { 
var vis = (box.checked) ? "block" : "none"; 
document.getElementById(it).style.display = vis;
} 
//--> 
</script>
</head>

<body>

<form>
<label for="search">Search:</label>
            <input type="text" name="search" id="search" onkeyup="dynamicSearch()"/>

<input type="checkbox" name="modtype" value="value1" onclick="showMe('div1', this)" />value1

<input type="checkbox" name="modtype" value="value2" onclick="showMe('div2', this)" />value2

<input type="checkbox" name="modtype" value="value3" onclick="showMe('div3', this)" />value3

<input type="checkbox" name="modtype" value="value4" onclick="showMe('div4', this)" />value4

<input type="checkbox" name="modtype" value="value5" onclick="showMe('div5', this)" />value5

<div class="row" id="div1" style="display:none">Show Div 1</div>
<div class="row" id="div2" style="display:none">Show Div 2</div>
<div class="row" id="div3" style="display:none">Show Div 3</div>
<div class="row" id="div4" style="display:none">Show Div 4</div>
<div class="row" id="div5" style="display:none">Show Div 5</div>
</form>

</body>

</html>

1 个答案:

答案 0 :(得分:1)

使用jQuery,这种东西更容易很多

例如,您的dynamicSearch功能可以替换为:

function dynamicSearch() {
    var val = $('#search').val();
    if (val == '') val = '-1';
    var srch = new RegExp(val, "gi");

    $('.row').each(function(i, el) {
        if ($(this).text().match(srch)) {
            $(this).show();
        } else {
            $(this).hide();
        }
    });
}

你也可以免费获得动画效果,你不能轻易做到设置CSS display属性。

我在http://jsfiddle.net/alnitak/nLxc4/放了一个工作小提琴,我认为做了你所要求的。