00页面载入
Posted seeding
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了00页面载入相关的知识,希望对你有一定的参考价值。
默认;
<script>
window.onload=function(){
/*一些代码*/
}
</script>
获取元素
//根据ID
document.getElementById ="myID";
//根据类
document.getELementsByClass="myClass";
//根据tag标签
document.getElementsByTagName="input";
修改样式
document.getElementById(id).style.property=new style
或者
var myElement = document.getElementById(id)
myElement.style.background = ‘red‘;
//多个样式
myElement.style.cssText="width:100px; height:100px; "
//获取元素class内容
myElement.cssName();
myElement.className= "a1 a2";
以上是关于00页面载入的主要内容,如果未能解决你的问题,请参考以下文章