私はページ遷移のためのコードを書いていますが、問題は私には同じページに行くリンクがたくさんある除外、私はそれをちょうど1行できますか?私は多くの.not()(除外)を1行だけ行うことができます
$('a')
.not('[href="#"]')
.not('[href="#navShow"]') // the problem
.not('[href="#navHide"]') // the problem
.not('[href="#about"]') // the problem
.click(function() {
});