Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我尝试在我的网页上按引号键 (') 时,firefox仅打开默认的快速查找链接 ,但我不希望它出现在我的网页上。
也许尝试:
$(document).on('keydown',function(e){ if(e.which === 52 && !$(e.target).is(':input')) e.preventDefault(); });