本文介绍了java脚本函数getElementById()的工作原理是什么的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
java脚本函数的工作是什么getElementById()
what is the work of java script function getElementById()
推荐答案
<input id="btnok" type="button" value="button" />
<input id="Button1" type="button" value="button" />
<div id="div1" />
<div id="div2" />
<script type="text/javascript">
document.getElementById("btnok").value; //It works on only that element which match the id with "btnok" or you can say works on unique Id.
document.getElementsByTagName("div").length; //It works on all that element which have the tag name "div"
</script>
这篇关于java脚本函数getElementById()的工作原理是什么的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!