第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

使用 javascript 多次附加 html 模板并帶參數(shù)

使用 javascript 多次附加 html 模板并帶參數(shù)

慕運(yùn)維8079593 2023-10-17 15:15:07
這是代碼,包含所有“占位符”:( bottom: auto;)let h = window.innerHeight;var x = document.getElementsByTagName("BODY")[0];x.style = "height: " + h + "px;";window.addEventListener('resize', function(event){    x = document.getElementsByTagName("BODY")[0];    h = window.innerHeight;    x.style = "height: " + h + "px;";});if(document.getElementById('main').offsetHeight > h) {  document.getElementById('footer').style = "bottom: auto;";}* {  margin: 0;  padding: 0;}.Placeholder{  background-color: blue;  height: 100px;  width: 100%;}.MainContainer {  width: 100%;  padding: 0;  margin: 0;  background-color: green;}.MyFooter {  position: absolute;  bottom: 0px;  width: 100%;  background-color: red;  padding: 0;  margin: 0;}<body>  <div class='Header'>Header</div>  <div class="MainContainer" id="main">    <div class='Placeholder'></div>    <div class='Placeholder'></div>    <div class='Placeholder'></div>    <div class='Placeholder'></div>    <div class='Placeholder'></div>  </div>  <div class="MyFooter" id="footer">    This is my footer, it should always be at the bottom of the page.  </div></body>
查看完整描述

1 回答

?
冉冉說

TA貢獻(xiàn)1877條經(jīng)驗(yàn) 獲得超1個(gè)贊

使用for 循環(huán)和模板文字動(dòng)態(tài)插入 id


這是一個(gè)基本示例,它創(chuàng)建 10 個(gè)具有不同 id 的跨度


for(let i=1;i<=10;i++)

{

  let div=document.createElement("div");

  div.innerHTML=`<span id="span${i}">Hey this is Span ${i} </span>`;

  document.body.append(div);

}


查看完整回答
反對 回復(fù) 2023-10-17
  • 1 回答
  • 0 關(guān)注
  • 101 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)