我正在尝试复制我在几个博客上看到过的东西,并且在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>
答案 0 :(得分:2)
您是否导入了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