为了账号安全,请及时绑定邮箱和手机立即绑定

为什么我得不到input的value值?

为什么我得不到input的value值?

19990000 2017-10-03 21:07:29
<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <title>表单验证</title>     <style>         .title{             font-weight: bold;             font-size:18px;         }         .names{             width:358px;             height:42px;             margin-left:38px;             -webkit-border-radius:5px;             -moz-border-radius:5px;             border-radius:5px;         }         .btn{             width:78px;             height:42px;             margin-left:15px;             background: rgb(46,122,184);             color: #fff;             font-size:18px;             font-weight: bold;             outline: none;             border:0;             border-radius: 5px;         }         .prompt{             margin-left:78px;             font-size:16px;             color: #ccc;         }     </style> </head> <body>     <form action="#">         <p>             <label for="names" class="title">名称</label>             <input type="text" class="names" id="names" name="user_name">             <button type="submit" class="btn">验证</button>         </p>         <p class="prompt">必填,长度为4~16个字符</p>     </form> </body> <script>     var names=document.getElementById("names");      </script> </html>
查看完整描述

4 回答

已采纳
?
Samaritan

TA贡献61条经验 获得超38个赞

var names = document.getElementById("names");
var namesValue = names.value;


查看完整回答
反对 回复 2017-10-04
?
萌萌乐

TA贡献1条经验 获得超0个赞

names.value

查看完整回答
反对 回复 2017-10-09
?
慕粉2348563550

TA贡献1条经验 获得超0个赞

var names=document.getElementById("names").value;

查看完整回答
反对 回复 2017-10-04
?
骑驴的帅小伙

TA贡献16条经验 获得超7个赞

ById只是获取元素,获取value要 names.value

查看完整回答
反对 回复 2017-10-04
  • 4 回答
  • 0 关注
  • 1714 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信