ユーザー名のトリガー@とhrefでユーザー名を作成して、プロファイルページにリンクしようとしています。私はphpスクリプトを作成したばかりで、それもうまくいきますが、jQueryの経験があまりないので、ユーザー名のURLを追加する方法がわからないという問題があります。
ユーザーが @user..... と入力したときに jQuery がアクティブになり、autosuggest が表示されたときに、Facebook のように @user.. と入力しているときと同じように、リンクが必要です。私が今やったことは:
$(function() {
//autocomplete
$("#username").autocomplete({
$("#username").attr('href'),
source: "hassearch.php",
minLength: 1
});
});
しかし、それは完全に機能するわけではありません.jQueryでどのように正しく機能するかを教えていただければ、ありがとうございます.jQueryについて多くを学ぶことができます!
更新: 理想的な jQuery コーディングを見つけました: "@" を入力したときに提案を表示する jquery UI オートコンプリートの実装
タグに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;
}
});