admin管理员组文章数量:1345286
I dont know enough to modify following code that will show me the word starting with the inputted characters.For eg.: If I type E or e it shows me "Electrical,Electronics,Mechanical" but I want only "Electrical,Electronics" to be displayed.How to do this?
I am using jquery autoplete plugin.
source: function(request, response) {
var matcher = new RegExp($.ui.autoplete.escapeRegex(request.term), "i");
response(select.children("option").map(function() {
var text = $(this).text();
if (this.value && (!request.term || matcher.test(text)))
return {
label: text.replace(
new RegExp(
"(?![^&;]+;)(?!<[^<>]*)(" +
$.ui.autoplete.escapeRegex(request.term) +
")(?![^<>]*>)(?![^&;]+;)", "gi"
), "<strong>$1</strong>"),
value: text,
option: this
};
}));
I dont know enough to modify following code that will show me the word starting with the inputted characters.For eg.: If I type E or e it shows me "Electrical,Electronics,Mechanical" but I want only "Electrical,Electronics" to be displayed.How to do this?
I am using jquery autoplete plugin.
source: function(request, response) {
var matcher = new RegExp($.ui.autoplete.escapeRegex(request.term), "i");
response(select.children("option").map(function() {
var text = $(this).text();
if (this.value && (!request.term || matcher.test(text)))
return {
label: text.replace(
new RegExp(
"(?![^&;]+;)(?!<[^<>]*)(" +
$.ui.autoplete.escapeRegex(request.term) +
")(?![^<>]*>)(?![^&;]+;)", "gi"
), "<strong>$1</strong>"),
value: text,
option: this
};
}));
Share
Improve this question
edited Dec 4, 2013 at 12:39
falsarella
12.4k10 gold badges74 silver badges118 bronze badges
asked Dec 15, 2011 at 12:44
SaurabhSaurabh
1571 gold badge3 silver badges12 bronze badges
0
1 Answer
Reset to default 10In Javascript RegExp, ^
means startsWith
:
var matcher = new RegExp("^" + $.ui.autoplete.escapeRegex(request.term), "i");
本文标签:
版权声明:本文标题:javascript - How To: Modify jquery.autocomplete regex to show results that starts with the given input - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743786675a2538811.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论