如何添加已存在于另一个#div:之前的内容 因为现有的div我将设置为固定位置
#text-1{
width:100%;
text-align:center;
/* visibility:hidden; */
/* position:fixed; */
}
#text-2 {
width:100%;
text-align:center;
}
#text-2:before {
content:"Equal to the contents of #text-1";
width:100%;
text-align:center;
color:#ff0000;
position:absolute;
width:100%;
left:50%;
background-color:#e3e3e3;
border-top:1px solid #999999;
margin-left:-50%;
margin-top:18px;
font-style:italic;
}

<div id="text-1">Content Text-1</div>
<div id="text-2">Content Text-2</div>
&#13;
答案 0 :(得分:1)
你需要使用jquery。首先在你的html文件中包含jquery库,如果它不存在,然后在你的head标签中添加以下javascript代码:
<script type="text/javascript">
$(document).ready(function(){
var contents = $("#text-1").html();
$("#text-2").html(contents);
});
</script>