如何将DIV定位到特定坐标?
我想将 DIV 定位在特定坐标处,如何使用 JavaScript 来做到这一点?
I want to position a DIV at specific coordinates, how can I do that using JavaScript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
您不必使用 JavaScript 来执行此操作。
使用普通的旧 css:
如果您觉得必须使用 javascript,或者尝试动态执行此操作
使用 JQuery,这会影响类“blah”的所有 div:
或者,如果您必须使用常规的旧 JavaScript,您可以通过 id 获取
You don't have to use Javascript to do this.
Using plain-old css:
If you feel you must use javascript, or are trying to do this dynamically
Using JQuery, this affects all divs of class "blah":
Alternatively, if you must use regular old-javascript you can grab by id
好吧,这取决于您是否想要定位一个 div 而不是其他任何东西,您不需要为此使用 java 脚本。您只能通过 CSS 来实现这一点。重要的是相对于你想要定位你的div的容器,如果你想相对于文档主体定位它,那么你的div必须绝对定位,并且它的容器不能相对或绝对定位,在这种情况下你的div将被定位相对于容器。
否则,如果您想相对于文档定位元素,则可以使用 Jquery 使用 offset() 方法。
如果相对于偏移父位置,则父位置是相对位置或绝对位置。然后使用以下...
well it depends if all you want is to position a div and then nothing else, you don't need to use java script for that. You can achieve this by CSS only. What matters is relative to what container you want to position your div, if you want to position it relative to document body then your div must be positioned absolute and its container must not be positioned relatively or absolutely, in that case your div will be positioned relative to the container.
Otherwise with Jquery if you want to position an element relative to document you can use offset() method.
if relative to offset parent position the parent relative or absolute. then use following...
这是一篇正确描述的文章,也是一个带有代码的示例。
JS 坐标
根据要求。下面是该文章最后发布的代码。
需要调用getOffset函数并传递返回其top和left值的html元素。
Here is a properly described article and also a sample with code.
JS coordinates
As per requirement. below is code which is posted at last in that article.
Need to call getOffset function and pass html element which returns its top and left values.
要设置 div 的内容,您可以使用以下内容:
Exists other good Alternatives in jQuery
To set the content of a div you can use the following:
Exists other good alternatives in jQuery
您还可以使用位置固定的 css 属性。
You can also use position fixed css property.
我抄袭了这个并添加了“px”;
效果很好。
I cribbed this and added the 'px';
Works very well.
将其
left
和top
属性分别编写为距左边缘和上边缘的像素数。它必须具有position:absolute;
或者将其作为函数,以便您可以将其附加到
onmousedown
等事件Script its
left
andtop
properties as the number of pixels from the left edge and top edge respectively. It must haveposition: absolute;
Or do it as a function so you can attach it to an event like
onmousedown