我有一個問題,我需要在這裏一隻手一個textarea的光標位置的頂部...textarea的autcompleting - 定位文本輸入上使用JavaScript
我想打一個自動完成字段,其中如果鍵入一個「@」,它們被提供一個自動完成的名稱列表。
我正在使用jQueryUI自動完成,唯一的問題與我的解決方案(http://jsfiddle.net/aUfrz/22/)是自動完成的文本輸入需要放置在textarea光標位置的頂部,而不是正確的,因爲它目前站。
這裏是我的JS這是在的jsfiddle:
$(document.body).on('keypress', 'textarea', function(e) {
var names = [
"johnny",
"susie",
"bobby",
"seth"
],
$this=$(this),
char = String.fromCharCode(e.which);
if(char == '@') {
console.log('@ sign pressed');
var input=$('<input style="position:relative; top:0px; left:0px;background:none;border:1px solid red" id="atSign" >');
$this.parent().append(input);
input.focus();
input.autocomplete({
source: names,
select: function (event, ui) {
console.log('value selected'+ui.item.value);
//$this.val('@'+ui.item.value);
$this.insertAtCaret(ui.item.value);
$this.focus();
input.remove();
} //select
}); //autocomplete
} //if
}); // keypress
HTML:
<textarea></textarea>
請注意,我這裏沒有顯示一個jQuery插件,我用插入選定的自動完成建議在插入位置:insertAtCaret()
,我在此找到other SO question。
喜歡codefactor。感謝您的意見,似乎我不得不對此做更多的研究,但我會找到解決方法。我現在將答覆作爲答案,直到我可能得到一個解決方案。再次感謝! – Epik