无法检索用户输入

Cannot Retrieve User Input

所以基本上我正在尝试创建一个更具交互性的日期选择器。我这样做是首先允许用户输入他们的名字。一旦他们点击提交,它现在应该说...你好 "the user's name"。

但由于某些原因,我使用的 if else 语句将不起作用。我查看了我的代码,它似乎是正确的,但用户输入不会打印 out.It 还应该检查输入是否为字符串,它将继续。如果它不是字符串,比如数字,它将输出到屏幕上... "You must tell us your name to move on!"。如何对用户输入的任何内容使用 if else 语句?有人可以查看我的代码并帮助我吗?我环顾四周,沿着这些路线找不到任何东西。也许这是重复的,或者我完全错误地处理了这件事,我只是不确定。谢谢您的帮助。也将不胜感激使这变得更好的建议! :)

HTML:

<!DOCTYPE html>
<html>
<head>
    <title>Going On Vacation!</title>
    <link type="text/css" rel="stylesheet" href="stylesheet.css"/>
</head>
<body>

    <h1>Heading Somewhere?</h1>
    <div id="main">
    <h2>What is your name?</h2>
        <input id="name" type= "text" placeholder="  Tell us!">

        <button id ="submit">Submit!</button>
    </div>

        <p id="user"></p>
        <p id="when"></p>
        <input id="date" placeholder="Choose your departure!">
        <p id="error1"></p>
        <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
    <script type="text/javascript" src="script.js"></script>
</body>
</html>

JavaScript:

$('#date').hide();

function userName(){
var user_name = $('#name').val();
$('#submit').click(function(){
 if(typeof user_name === 'string'){
     $('#main').hide('slow');
         document.getElementById("user").innerHTML = "Hello " + user_name + "!";
         $('#user').css("margin-left", "641px");
         $('#when').css("margin-left", "598px");
         document.getElementById("when").innerHTML = "When are you leaving?";
         $('#date').show();
         $('#date').datepicker();
     } else {
         document.getElementById("error1").innerHTML = "You must tell us your name to move on!"; 
     }
   });
 };


$(document).ready(userName);

它不起作用,因为您在用户填写之前阅读用户名字段!

var user_name = $('#name').val();

该行需要在提交方法中。

其次,typeof 检查毫无意义。你想检查长度。

$('#submit').click(function(){
    var user_name = $.trim($('#name').val());
    if(user_name.length>0){

user_name 超出范围。只需将用户声明 var 移动到内部提交事件:

function userName(){
    $('#submit').click(function(){
      var user_name = $('#name').val();
     if(typeof user_name === 'string'){
         $('#main').hide('slow');
             document.getElementById("user").innerHTML = "Hello " + user_name + "!";
             $('#user').css("margin-left", "641px");
             $('#when').css("margin-left", "598px");
             document.getElementById("when").innerHTML = "When are you leaving?";
             $('#date').show();
             $('#date').datepicker();
         } else {
             document.getElementById("error1").innerHTML = "You must tell us your name to move   on!"; 
        }
      });
    };

如果您不想 jQuery 每次用户单击提交时都在 DOM 中查找对象。您可以在范围外找到该对象,但必须在提交事件内检索该值。示例:

...
 var userObj = $('#name');
 $('#submit').click(function(){
          var user_name = userObj.val();
 ...