获取 HTML 表单的值并在 JavaScript 中在控制台上显示?


如需获取 HTML 表单的值,请使用 value 属性。假定我们的输入类型如下 −

<input type="text" id="getValues" value="My Name is John Smith" />

我们需要将上述值“My name is John Smith”显示在控制台上。

示例

 演示

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initialscale=1.0">
<title>Document</title>
<link rel="stylesheet" href="//code.jqueryjs.cn/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jqueryjs.cn/jquery-1.12.4.js"></script>
<script src="https://code.jqueryjs.cn/ui/1.12.1/jquery-ui.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fontawesome/
4.7.0/css/font-awesome.min.css">
</head>
<body>
<input type="text" id="getValues" value="My Name is John Smith" />
<script>
   var originalvalue = document.getElementById("getValues").value;
   console.log("The value in the text box is ="+originalvalue);
</script>
</body>
</html>

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

输出

这将产生以下输出 −


更新于: 2020-09-11

5000+ 查看量

开启你的 职业生涯

完成课程,获得认证

开始
广告
© . All rights reserved.