课程
/前端开发
/JavaScript
/JavaScript进阶篇
如题,document.getElementById()后面有没有.value有什么区别
2016-03-11
源自:JavaScript进阶篇 6-11
正在回答
上面的诸位仁兄答得都很对
oElement = document . getElementById ( sID )
参数: sID : 必选项。字符串 (String)
返回值: oElement : 对象 (Element) 。
说明: 根据指定的 id 属性值得到对象。返回 id 属性值等于 sID 的第一个对象的引用。假如对应的为一组对象,则返回该组对象中的第一个。
如果无符合条件的对象,则返回 null
简单的说document . getElementById() 就是一个对象,你加上.value或者其它的就可进行获取或者改变这个对象的值。
document.getElementById() 是获得元素;
document.getElementById().value 是获得元素的值,假如这个元素是个type为text的input,它就会获得这个input的value值;
document.getElementById().value 是获得元素的值,假如这个元素事个type为text的input,它就会获得这个input点value值;
举报
本课程从如何插入JS代码开始,带您进入网页动态交互世界
5 回答document.getElementById("fruit").value=a和a=document.getElementById("fruit").value;有什么区别?
1 回答获取下拉框的值document.getElementById().value和document.getElementById().options[document.getElementById().selectedIndex].value有什么区别吗?
3 回答value 和innerHTML有什么区别?
1 回答innerHTML和value有什么区别
1 回答document.getElementById("fruit").value=d;和 d=document.getElementById("fruit").value;区别?