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.
Web ページで引用符 (') キーを押そうとすると、Firefox はデフォルトのクイック検索リンクのみを開きます が、それを Web ページに表示したくありません。
多分試してください:
$(document).on('keydown',function(e){ if(e.which === 52 && !$(e.target).is(':input')) e.preventDefault(); });