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.
クリック イベントをリンクに添付して、ブラウザーの既定の動作を無効にすることができます。
<a href="http://example.com">Example</a>
$('a').click(function(event) { event.preventDefault(); func(); });