我有这个input box
,an auto suggest div
当输入某些内容时会显示。input box
没有固定位置,可以在页面上的不同位置。
我怎样才能使建议框div
始终出现relative to the position
在输入中。即建议 div 的左上角与输入的右下角是同一点吗?
$('#textBox').on('keypress',function(){
$('#suggestionBox').show();
});
<input type = "text" id = "textBox" />
<div id = "suggestionBox" style = "display:none;">
<ul>
<li>suggestion</li>
</ul>
</div>