我的网站有输入按钮,它们在“:活动”时移动 1px。而且,如果我点击一个边框,我无法捕捉到点击事件,因为它会移动一点。
这是一个例子。您无法获得点击事件。
HTML:
<input type="button" value="Click Me!">
CSS :
input{
width: 100px;
height: 50px;
}
input:active{
position: relative;
top: 50px;
left: 100px;
}
jQuery :
$(function() {
$('input').on('click', function() {
alert('You caught me!');
});
});
演示 :