如何使用 jquery 突出显示行而不区分大小写
$(document).ready(function () {
$("#btnhighlight").click(function () {
var htext = $("#txthighlighttext").val();
if (htext == '') {
alert("Pleae enter the search item.");
return false;
}
$("#lstCodelist option").each(function () {
$(this).removeClass('searchItem');
if ($(this).text().search(htext) != -1) {
$(this).addClass('searchItem');
}
});
});
});
假设我有一行类似这样的内容,
I love to work with Jquery.
如果我将搜索文本输入为 jquery,则它不会突出显示 Jquery。但我的查询应该以两种方式工作,无论大写字母还是小写字母。
如何更改我的代码以使其像这样工作。
感谢您的所有帮助。
$(document).ready(function () {
$("#btnhighlight").click(function () {
var htext = $("#txthighlighttext").val();
if (htext == '') {
alert("Pleae enter the search item.");
return false;
}
$("#lstCodelist option").each(function () {
$(this).removeClass('searchItem');
if ($(this).text().search(htext) != -1) {
$(this).addClass('searchItem');
}
});
});
});
Lets take I have a row something like this
I love to work with Jquery.
If I enter my search text as jquery its not highlighting Jquery. But my query should work in both they way regardless of CAPS or SMALL letters.
how to change my code to work like that.
thanks for your all help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
.toUpperCase()
......... // 或 lowerCaseuse
.toUpperCase()
............. // or lowerCase我相信这个应该有效:
旁注:
indexOf
是 事实证明比搜索
更快。This one should work, I believe:
Sidenote:
indexOf
is proven to be faster thansearch
.