x = document.getElementById("numb").value;
我不明白" .value "手段? 我已经尝试从谷歌和过去的javascript问题找到解决方案。 所以请告诉解释以便更好地理解。
答案 0 :(得分:0)
value
此处是property返回的Element Object的getElementById。
作为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>