x = document.getElementById(" numb")。value;

时间:2016-04-02 14:06:44

标签: javascript

x = document.getElementById("numb").value;

我不明白" .value "手段? 我已经尝试从谷歌和过去的javascript问题找到解决方案。 所以请告诉解释以便更好地理解。

2 个答案:

答案 0 :(得分:0)

value此处是property返回的Element ObjectgetElementById

作为you can see at this link,这是几乎所有HTML表单元素的属性,例如<input>字段。

答案 1 :(得分:-3)

.value表示您获得分配给HTML元素的值。例如:

<html>
    <head>
        <script>
            function getName()
                {
                    var x = document.getElementById("numb").value;
                    msgbox(x);
                }
        </script>
    </head>
    <body>
        <input type='button' value='Get Name' onclick='getName()'/>
        <input id='numb' type='text' name='myname' value='5'/>
    </body>
</html>