国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 開(kāi)發(fā) > CSS > 正文

Javascript動(dòng)態(tài)創(chuàng)建 style 節(jié)點(diǎn)

2024-07-11 08:39:11
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

有很多提供動(dòng)態(tài)創(chuàng)建 style 節(jié)點(diǎn)的方法,但是大多數(shù)都僅限于外部的 css 文件。如何能使用程序生成的字符串動(dòng)態(tài)創(chuàng)建 style 節(jié)點(diǎn),我搞了2個(gè)小時(shí)。

靜態(tài)外部 css 文件語(yǔ)法:

@import url(style.css);

動(dòng)態(tài)外部 css 文件加載的方法有如下:

第一種:

var style = document.createElement(’link’);
style.href = ’style.css’;
style.rel = ’stylesheet’;
style.type = ‘text/css’;
document.getElementsByTagName(’HEAD’).item(0).appendChild(style);

第二種簡(jiǎn)單:

document.createStyleSheet(style.css);

動(dòng)態(tài)的 style 節(jié)點(diǎn),使用程序生成的字符串:

var style = document.createElement(’style’);
style.type = ‘text/css’;
style.innerHTML=”body{ background-color:blue; }”;
document.getElementsByTagName(’HEAD’).item(0).appendChild(style);

很遺憾,上面的代碼在 ff 里面成功,但是 ie 不支持。從老外論壇得到代碼:

var sheet = document.createStyleSheet();
sheet.addRule(’body’,’background-color:red’);

成功,但是很麻煩,要把字符串拆開(kāi)寫(xiě),長(zhǎng)一點(diǎn)的寫(xiě)死。

接著搜,在一個(gè)不知道什么國(guó)家的什么語(yǔ)言的 blog 上找到代碼:

document.createStyleSheet(”javascript:’body{background-color:blue;’”);

成功,此人實(shí)在厲害,但是問(wèn)題出來(lái)了,url 最大 255 個(gè)字符,長(zhǎng)一點(diǎn)的就不行了,經(jīng)過(guò) SXPCrazy 提示,改成:

window.style=”body{background-color:blue;”;
document.createStyleSheet(”javascript:style”);

完美解決??!代碼:

<html>
<head>
<script>
function blue(){
if(document.all){
window.style="body{background-color:blue;";
document.createStyleSheet("javascript:style");
}else{
var style = document.createElement(‘style’);
style.type = ‘text/css’;
style.innerHTML="body{ background-color:blue }";
document.getElementsByTagName(‘HEAD’).item(0).appendChild(style);
}
}
</script>
</head>
<body>
<input type="button" value="blue" onclick="blue();"/>
</body>
</html>

發(fā)表評(píng)論 共有條評(píng)論
用戶(hù)名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 宁南县| 长垣县| 荆门市| 洞头县| 兖州市| 南通市| 广州市| 利辛县| 永靖县| 甘孜县| 荔浦县| 临颍县| 呼图壁县| 华池县| 达日县| 菏泽市| 太康县| 西林县| 台中市| 贺兰县| 南郑县| 武陟县| 巫山县| 夏河县| 鹤庆县| 洛扎县| 无极县| 楚雄市| 凤冈县| 阿克陶县| 泉州市| 连云港市| 伊通| 白朗县| 龙陵县| 宝应县| 普格县| 永嘉县| 武平县| 永福县| 宝丰县|