如何使用jquery将specifix顶部和左侧位置上的div添加到另一个div
时,如何将子 div 设置为 x px left 和 y px top
添加到另一个 div HTML
<div id="divContainer"> </div>
Script
$.get(target, function (data) {
$(data).appendTo('#divContainer').css( { left:100,top:200});
});
get 请求将为我提供另一个 div 的标记。
这对我不起作用(定位到左侧和顶部)。有什么想法吗?
How can i set a child div to x px left and y px top when adding to another div
HTML
<div id="divContainer"> </div>
Script
$.get(target, function (data) {
$(data).appendTo('#divContainer').css( { left:100,top:200});
});
The get request will give me the markup for another div.
This does not work for me ( positioning to left and top). Any thoughts ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您还需要设置
位置
。默认情况下,
div
的位置为static
。top
和left
不会影响具有静态位置的元素。You'll need to set the
position
as well.By default, a
div
has a position ofstatic
.top
andleft
do not affect elements with static position.