gpt4 book ai didi

javascript - 似乎无法让 "keyup"工作

转载 作者:行者123 更新时间:2023-12-02 18:33:14 24 4
gpt4 key购买 nike

我正在尝试复制我在一些博客上看到的东西,并且在 Facebook 上有所使用,并且通过按一个键即可转到下一篇文章。在 Facebook 上,按下“j”键。我不太擅长 Javascript,并且在这里找到了一些关于如何做到这一点的文章,但我觉得我错过了一些东西。这是我的查看代码,请告诉我我做错了什么。警报甚至没有触发。谢谢。

@{
ViewBag.Title = "Index";
}

<script>
$(document).keyup(function (e) {
alert("entered function");
if (e.keyCode == 90 || e.keyCode == 16) {
alert("entered conditional");
var ta = document.getElementsByClassName('post_unread')[0];
ta.removeAttribute('class', 'post_unread');
ta.addAttribute('class', 'post_reading');
}
});
</script>

<div>
<div class="forum_post_wrapper">
<div class="forum_post">

</div>
<div class="forum_post_wrapper">
<div class="forum_post post_unread">

</div>
<div class="forum_post_wrapper">
<div class="forum_post post_unread">

</div>
</div>
</div>
</div>
</div>

最佳答案

您是否导入了 jQuery 文件,我问的原因是您没有使用 jQuery 进行标记

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js" />

也许您错过了添加此脚本。

$(document).keyup(function (e) { // this belongs to jQuery

关于javascript - 似乎无法让 "keyup"工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17603515/

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