0

有没有一种方法可以使用 JS 重新定位 div,以便在页面上方的 HTML 中拥有最相关的副本。但是,当涉及到最终用户所看到的内容时,可以灵活地在您喜欢的任何地方显示相同的副本吗?IE...

HTML:

<div id="three">Three(to be at the top of HTML but display at bottom in browser)</div>
<div id="one">One</div>
<div id="two">Two</div>

浏览器:

One
Two 
Three(to be at the top of HTML but display at bottom in browser)

是否有任何地方的教程,我需要使用什么功能?谢谢。

4

2 回答 2

0

把这个写在你的 CSS 中,不需要 JS:

#three {
    position: fixed;
    bottom: 0;
}
于 2012-08-16T10:22:46.963 回答
0

您可以使用这种 javascript 来修改 CSS 属性。为了与名为 Safari 的用户的想法相同,我们可以想出这样的代码:

<script>
  document.getElementById('three').style.position = 'fixed';
  document.getElementById('three').style.bottom = 0;
</script>
于 2012-08-16T10:27:31.847 回答