首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

javascript调用css资料

2012-10-06 
javascript调用css文件《html文件》内容如下:?htmlheadtitle无标题文档/titlescriptfunction chan

javascript调用css文件

《html文件》内容如下:

?

<html>

<head>

<title>无标题文档</title>

<script>

function changecss(){

var css=document.createElement('link');

css.href='123.css';

css.rel="stylesheet";

css.type="text/css";

document.body.appendChild(css);

}

window.onload=function(){

//document.getElementById('changecss').onclick=changecss;

?

?changecss();

}

</script>

</head>

?

<body>

<a href="#" >dfg</a>

</body>

</html>

?

?

《123.css》 内容如下:

?

a{

color:#666666;

font-size:12px;

text-decoration:none;}

a:hover{

color:#0000FF;

font-size:12px;

text-decoration:underline;}

热点排行