我正在尝试使用 jquery 来选择下面 HTML 文档中的所有输入,并在“keydown”事件中选择“this”,然后显示下一个元素。
我的 jQuery
$(document).ready(function(){
$('.hint').hide();
});
$('input').keydown(function(){
$(this).show();
});
我的 HTML
<!DOCTYPE html>
<html>
<head>
<title>Title of my Page</title>
</head>
<body>
<p>
<input type="text"><span class="hint">Something cool</span>
</p>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="app.js"></script>
</body>
</html>