JavaScript判断输入框是否为空:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>JS判断输入框的值是否为空</title> </head> <body> <input type="text" id="txt"/> <input type="button" value="检测" id="btn"> <script> var oTxt = document.getElementById('txt'); var oBtn = document.getElementById('btn'); function isnull(val) { var str = val.replace(/(^\s*)|(\s*$)/g, '');//去除空格; if (str == '' || str == undefined || str == null) { //return true; console.log('空') } else { //return false; console.log('非空'); } } oBtn.onclick = function () { isnull( oTxt.value ); } </script> </body> </html>
先将输入框中的空格删除,然后使用if(str==''||str==undefined||str==null)判断输入框是否为空。
以上就是javascript如何判断输入框是否为空?的详细内容,更多请关注易知道|edz.cc其它相关文章!