我正在尝试更新我的主 html 文件中不存在但在我正在注入的文件中存在的 div 的 css(css 位于我的 main.css 中)。这可能吗?如果是这样怎么办?
好的,这就是我的主 html 文件中的内容
<div id="container">
<div id="page">
<!placeholder>
</div></div>
抱歉格式错误,我无法让标签和新行与本网站上的代码输入系统一起使用。
接下来是我的 main.css
#container {
position: fixed;
margin-right: 0px;
overflow-x: hidden;
overflow-y: scroll;}
#page {
position: absolute;
width: 100%;
height: 1600px;
z-index: 10;
border-left: 1px solid #CCCCCC;}
#recposts {
position: absolute;
left:0;
top:1200px;}
.child {
height: 400px;
border-top: 1px solid #CCCCCC;
border-bottom: 1px solid #CCCCCC;
z-index: 11;
background-color: #EDEDED;
width: 100%;
padding-right: 10px;}
好吧,现在我正在注射什么
<div id ="page">
<div id="recposts" class="child">
<h1> Recent Posts </h1>
</div></div>
所以我需要能够编辑#recposts 的位置顶部和.child 的高度。
我解决了我的问题,问题是我没有在 html 加载时编辑 css。我将函数放入 .load() 中,现在它可以工作了。