Simple minimal document
\documentclass[a4paper,10pt]{scrbook}
\usepackage{hyperref}
\begin{document}
\chapter*{Preface}
This is the preface.
\tableofcontents
\chapter{Chapter One}
This is chapter one.
\end{document}
By using hyperref, pdflatex produces a "Contents" section in the PDF file. This handy navigator does not include the TOC itself, for this document it only contains "Chapter One". I want my PDF Contents to include a link to the on-page TOC. (Naturally I don't want the on-page TOC to contain itself.) Is this possible?

\pdfbookmark[1]{Name}{Anchor}just before calling\tableofcontentswhere [1] is the level at which the bookmark should appear. You may need a\clearpageor\cleardoublepagebefore setting the bookmark to ensure it points to the right position. – Wiebke Jan 16 '17 at 14:18