用javascript判断获取内容长度的问题

JS代码:


        function open_user(){

            var ID_length = document.getElementById("idinput").value;            

            if (ID_length.length > 3) {

                window.open("用户登录界面.html");            

            }else{

                alert("wrong");

            }

html部分代码:


<a href="" id="land" style="display: inline-block;width: 272px;height: 42px;background: #dcbd40;text-align: center;line-height: 42px;color: black;text-decoration: none;font-size: 17px;" onclick="open_user()">登录</a>

https://img4.mukewang.com/5c80c13a0001f26e08000418.jpg

如图,无论输入内容的长度是否满足条件都会弹出错误,求大佬帮助。

桃花长相依
浏览 652回答 2
2回答

慕哥9229398

调试一下咯,alert(ID_length)&nbsp;先看看这个是什么,确定你有没有取对。

GCT1015

你给的 HTML 代码连&nbsp;id="idinput"&nbsp;都没有,想答都没法答啊……
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript