Jquery筛选器未按预期工作

时间:2016-10-05 18:29:58

标签: javascript jquery html

# Pretend there is a function called get_avail_fd
# Then the following is something like
#     fd=$(get_available_descriptor)
#     exec $fd<file
# except there is no race condition or need to lock
# file descriptor between the call to get_avail_fd and exec
exec {fd}<file

我正在处理搜索功能以及用户点击选项时删除选项。上面的代码适用于搜索,但是当我在搜索值后单击从选择框中删除的选项时,过滤器函数(索引,元素)的参数被交换。由于它的错误即将来临。你能不能帮助我,我错过了这一点。

1 个答案:

答案 0 :(得分:1)

最好使用Array的splice方法从主数组中删除元素,而不需要克隆。

<p>Animated search form:</p>

<form>
  <input id="search" type="text" name="search" placeholder="Search..">
</form>