我正在尝试使用触发器 @ 和 href 为用户名创建用户名以链接到他们的个人资料页面。我刚刚制作了 php 脚本,它也可以正常工作,但我对 jQuery 没有太多经验,所以我的问题是我不知道如何为用户名添加 url。
我希望当用户输入@user ..... 并且当它显示自动提示时,jQuery 将激活,必须有一个链接,即使在你输入@user 时也是如此,就像 facebook。我现在做的是:
$(function() {
//autocomplete
$("#username").autocomplete({
$("#username").attr('href'),
source: "hassearch.php",
minLength: 1
});
});
但它并不完全有效,如果你能帮助我如何使用 jQuery 以正确的方式工作,谢谢你,然后我可以学到很多关于 jQuery 的知识!
更新:我找到了一个理想的 jQuery 编码:实现 jquery UI 自动完成以在您键入“@”时显示建议- 但我现在的问题是,如何加载 php 文件以获取数据库中的用户?
我想在标签中加载 php 文件:
var availableTags = [--> to load php file <--];
function split(val) {
return val.split(/@\s*/);
}
function extractLast(term) {
return split(term).pop();
}
$("#tags")
// don't navigate away from the field on tab when selecting an item
.bind("keydown", function(event) {
if (event.keyCode === $.ui.keyCode.TAB && $(this).data("autocomplete").menu.active) {
event.preventDefault();
}
}).autocomplete({
minLength: 0,
source: function(request, response) {
var term = request.term,
results = [];
/* If the user typed an "@": */
if (term.indexOf("@") >= 0) {
term = extractLast(request.term);
/* If they've typed anything after the "@": */
if (term.length > 0) {
results = $.ui.autocomplete.filter(
availableTags, term);
/* Otherwise, tell them to start typing! */
} else {
results = ['Start typing...'];
}
}
/* Call the callback with the results: */
response(results);
},
focus: function() {
// prevent value inserted on focus
return false;
},
select: function(event, ui) {
var terms = split(this.value);
// remove the current input
terms.pop();
// add the selected item
terms.push(ui.item.value);
// add placeholder to get the comma-and-space at the end
terms.push("");
this.value = terms.join("");
return false;
}
});