gpt4 book ai didi

javascript - JQuery keyup/down 在 Chrome 中不起作用

转载 作者:行者123 更新时间:2023-12-03 07:12:32 26 4
gpt4 key购买 nike

$('#user_text').keyup(function(){
var user_text = $('#user_text').val();
$('#user_text_feedback').html(user_text);
});
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jquery</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
</head>
<body>
<input type="text" id="user_text" value="hey"><br />
<span id="user_text_feedback"></span>

</body>
</html>

我使用谷歌浏览器作为我的默认浏览器。我尝试执行上面的代码,但没有得到所需的输出。我还尝试使用 keydown 而不是 keyup,但没有得到正确的输出

最佳答案

$('#user_link') 更改为 $('#user_text'):

$('#user_text').keyup(function(){
var user_text = $('#user_text').val();
$('#user_text_feedback').html(user_text);
});

关于javascript - JQuery keyup/down 在 Chrome 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36569585/

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