让 JavaScript 从用户那里获取 HTML 输入,解析和显示?

HTML 输入值是一个字符串。要将字符串转换为整数,请使用parseInt().

示例

以下是代码 -

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <title>Document</title>
</head>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script xx_src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script xx_src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<body>
   <input type="text" id="txtInput" placeholder="Enter a number">
   <button type="button" onclick="result();">GetANumber</button>
</body>
<script>
   function result() {
      var numberValue = document.getElementById("txtInput").value;
      if (!isNaN(numberValue))
         console.log("The value=" + parseInt(numberValue));
      else
         console.log("请输入整数值..");
   }
</script>
</html>

要运行上述程序,请保存文件名“anyName.html(index.html)”。右键单击该文件,然后在 VS Code 编辑器中选择“使用 Live Server 打开”选项。

输出结果

这将在控制台上产生以下输出 -

现在,在文本框中输入一个值。

现在按下按钮,您将获得以下输出。

这将产生以下输出 -

控制台中的输出 -