JS 對html標籤的屬性的幹預以及JS 對CSS 樣式表屬性的幹預

來源:互聯網
上載者:User

標籤:put   nbsp   樣式   代碼   html   皮膚   font   fda   back   

 

-任何標籤的任何屬性都可以修改!

-HTML裡是怎麼寫, JS就怎麼寫

 

以下是一段js 作用於 css 的 href的 代碼

 

<linkid="l1" rel="stylesheet" type="text/css" href="css1.css"/>

<script>

function skin1()

{

    var oL=document.getElementById(‘l1‘);

    

    oL.href=‘css1.css‘;

}

 

function skin2()

{

    var oL=document.getElementById(‘l1‘);

    

    oL.href=‘css2.css‘;

}

</script>

 

 

<inputtype="button" value="皮膚1" onclick="skin1()"/>

<inputtype="button" value="皮膚2" onclick="skin2()"/>

 

以下是一段JS作用於標籤的事件屬性的代碼

 

<script>

function setText()

{

    var oTxt=document.getElementById(‘txt1‘);

    

    oTxt.title=‘abcddfdasfe‘;

}

</script>

 

<inputid="txt1" type="text"/>

<inputtype="button" value="改文字" onclick="setText()"/>

JS 對html標籤的屬性的幹預以及JS 對CSS 樣式表屬性的幹預

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.