问答详情
源自:6-11 编程练习

document.getElementById()后面有没有.value有什么区别

如题,document.getElementById()后面有没有.value有什么区别

提问者:qq_阿克_0 2016-03-11 09:34

个回答

  • SiMuoo先生
    2016-03-11 11:03:38

    上面的诸位仁兄答得都很对

  • 醉大侠
    2016-03-11 10:15:52

            oElement = document . getElementById ( sID )

            参数:   sID     : 必选项。字符串 (String) 

            返回值: oElement     : 对象 (Element) 。

            说明:  根据指定的 id 属性值得到对象。返回 id 属性值等于 sID 的第一个对象的引用。假如对应的为一组对象,则返回该组对象中的第一个。

            如果无符合条件的对象,则返回 null

    简单的说document . getElementById() 就是一个对象,你加上.value或者其它的就可进行获取或者改变这个对象的值。



  • 蒲公英mm
    2016-03-11 10:05:06

    document.getElementById() 是获得元素;

    document.getElementById().value 是获得元素的值,假如这个元素是个type为text的input,它就会获得这个input的value值;


  • 蒲公英mm
    2016-03-11 10:03:55

    document.getElementById() 是获得元素;

    document.getElementById().value 是获得元素的值,假如这个元素事个type为text的input,它就会获得这个input点value值;