获取元素的第二种方法

Posted Objiect

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取元素的第二种方法相关的知识,希望对你有一定的参考价值。

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>

<script>
window.onload = function (){
// document.title = 123;
// document.body.innerHTML = ‘abc‘;
var aBtn = document.getElementsByTagName(‘input‘);

// alert(aBtn.length);

document.body.innerHTML = ‘<input type="button" value="按钮" /><input type="button" value="按钮" /><input type="button" value="按钮" />‘;

// alert(aBtn.length);
aBtn[0].onclick = function (){ alert(1); };
aBtn[1].onclick = function (){ alert(1); };
aBtn[2].onclick = function (){ alert(1); };

// 重复执行某些代码
// 每次执行的时候,有个数字在变化
};
</script>

</head>

<body>
</body>
</html>

以上是关于获取元素的第二种方法的主要内容,如果未能解决你的问题,请参考以下文章

前端之javascript2

jquery怎么获取style里面的属性值

从特定的第一个元素获取向量对的第二个元素

springboot配置之获取配置文件中属性的第二种方法(@Value)不同于@ConfigurationProperties

jquery 怎样获取某元素以下的第n个元素

如何根据他的第二个子数组值获取最大的数组元素