当前位置:编程学习 > html/css >>

JS中的 calssName 什么 它的作用是什么 是Css里面那个class延伸出来的么 给个例子

追问:就是得到class里面的值呗呃 算是明白了点 谢了 不过还有很多问题
答案:className 属性设置或返回元素的 class 属性。

本例展示了两种获得 <body> 元素的 class 属性的方法:
<html>
<body id="myid" class="mystyle">

<script type="text/javascript">
x=document.getElementsByTagName('body')[0];
document.write("Body CSS class: " + x.className);
document.write("<br />");
document.write("An alternate way: ");
document.write(document.getElementById('myid').className);
</script>

</body>
</html>
其他:这方面我也是刚刚学不久,不能帮助你啦!

上一个:利用html语言和javascripth,css结合起来写个网页,五个页面以上,谢谢。。。
下一个:纯CSS 制作分页问题

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,