作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个简单的 javascript
$('#about_us').on('click',function() {
$('#slider').toggleClass('open');
});
我只想通过单击键盘上的向左箭头来激活该功能。
非常感谢!
最佳答案
$('body').keydown(function(e) {
if(e.keyCode == 37)
{
$('#slider').toggleClass('open');
}
});
#slider {
background:red;
height:0px;
}
#slider.open {
height:100px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div>Click once on this frame (to focus this body) and hit the left arrow</div>
<div id="slider">
</div>
关于javascript - 从左键单击箭头开始的功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32629008/
在 C# - WinForms 中,如何检测在 ToolStripTextBox 中按下 Alt + 左键? 最佳答案 protected override bool ProcessCmdKe
我希望 Resharper 中的 Control+LeftClick 绑定(bind)到“Goto Implementation”而不是“Goto Declaration”。这是因为我使用了很多接口(
我是一名优秀的程序员,十分优秀!