gpt4 book ai didi

javascript - 如何在输入文本的正下方添加 div?

转载 作者:行者123 更新时间:2023-11-28 04:22:34 25 4
gpt4 key购买 nike

我想开发我的简单自动完成功能,我对 JQuery 自动完成插件不感兴趣。

我只是想在输入文本的正下方添加一个潜水,这段代码应该可以工作,我做错了什么?实现它的方法是什么?

JSFiddle

如果你不想打开 fiddle ,这里是代码:

$("#txtSearch").keypress(function (e) {
if ($("#txtSearch").val().length >= 2) {
var pos = $("#txtSearch").position();
$('<div />', {
'html': "xxxxxxxxx xx x"
}).css({
top: pos.top,
left: pos.left,
width: '300px',
position: 'absolute',
'background-color': 'Yellow'
}).appendTo($("#txtSearch"));
}
});

最佳答案

试试下面的代码,

$("#txtSearch").keypress(function (e) {
if ($("#txtSearch").val().length >= 2) {
var pos = $("#txtSearch").position();
$('<div />')
.html("xxxxxxxxx xx x")
.css({
top: pos.top + $("#txtSearch").height() + 1,
left: pos.left,
width: '300px',
position: 'absolute',
'background-color': 'Yellow'
}).insertAfter($("#txtSearch"));
}
});

演示: http://jsfiddle.net/uZF5g/1/

关于javascript - 如何在输入文本的正下方添加 div?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14862494/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com