概述
JavaScript中访问节点对象的方法有哪些?
复制代码 代码如下:
var obj = document.getElementById('fdafda');
var obj = document.f1;
obj.method="post";
obj.action='Bb';
var obj = document.f1.userName;
var obj = document.forms[0].userName;
var obj = document.forms[0].elements[0];
var obj = document.f1.elements[0];
var obj = document.forms["f1"].elements["userName"];
var obj = document.forms[0].like;
for(var i=0;i<obj.length;i++)
{
var aa = obj[i];
if(aa.checked)
{
alert();
}
}
<form name="f1" action="AA">
<input type="text" name="userName" id="userName"/>
<input type="checkbox" name="like" value="sport"/>
<input type="checkbox" name="like" value="art"/>
<input type="checkbox" name="like" value="music"/>
</form>
<form name="f1" action="AA">
<input type="text" name="userName" id="userName"/>
<input type="checkbox" name="like" value="sport"/>
<input type="checkbox" name="like" value="art"/>
<input type="checkbox" name="like" value="music"/>
</form>
<form name="f1" action="AA">
<input type="text" name="userName" id="userName"/>
<input type="checkbox" name="like" value="sport"/>
<input type="checkbox" name="like" value="art"/>
<input type="checkbox" name="like" value="music"/>
</form>
最后
以上就是疯狂爆米花为你收集整理的JavaScript中访问节点对象的方法有哪些如何使用的全部内容,希望文章能够帮你解决JavaScript中访问节点对象的方法有哪些如何使用所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复