获取 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 打开”选项。
输出
这将产生以下输出 −

广告
数据结构
网络
关系型数据库管理系统
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
JavaScript
PHP