javascript dom 编程艺术 CSS DOM

来源:互联网 发布:西施貂蝉网络表情 编辑:程序博客网 时间:2024/05/16 10:40
p#example{
    color:red;
    font:12px 'Arial',sans-serif;

}


<!DOCTYPE html>
<head>
    <meta http-equiv="content-type" content="text/html;charset=utf-8">
    <title>Example</title>
    <link rel="stylesheet" href="styles/styles.css" type="text/css" media="screen"/>




   <script type="text/javascript">
    window.onload=function(){
        var para=document.getElementById("example");
alert("The font size is "+para.style.fontSize);
para.style.color="black";
para.style.font="2em 'Times',serif"
    }
    </script>
<body>
    <p id="example">An example of a paragraph</p>
</body>
</head>
</html>

0 0
原创粉丝点击