gpt4 book ai didi

javascript - 使用 javascript 获取 html 输入值时遇到问题

转载 作者:行者123 更新时间:2023-12-01 01:21:05 25 4
gpt4 key购买 nike

我有一个 html 文件,我想抓取使用 javascript 在输入字段中输入的文本。我尝试了几种不同的方法,但似乎没有什么能正常工作。这是我现在拥有的代码。

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<title>Document</title>
</head>
<body>
<input type="text" id="searchingterm">
<form>
<input type="text" id="search">
</form>
<script>
$(document).ready(function(){
var searched = document.getElementById("search").value;
console.log(searched)
})
</script>
</body>
</html>

我也尝试过使用jquery,但也没有做任何事情。

最佳答案

基本上,问题是您没有为该输入分配任何内容,而且您没有触发搜索的函数。

你的代码是正确的,你只需要稍微改变一下。

function search() {
var searched = document.getElementById("search").value;
console.log(searched)
}
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<title>Document</title>
</head>

<body>
<form>
<input type="text" id="search">
</form>
<button onclick="search()"> search</button>
</body>

</html>

这里的body上有脚本

<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<title>Document</title>
</head>

<body>
<form>
<input type="text" id="search">
</form>
<button onclick="search()"> search</button>
<script>
function search() {
var searched = document.getElementById("search").value;
console.log(searched)
}
</script>
</body>

</html>

关于javascript - 使用 javascript 获取 html 输入值时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54227224/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com