指定したページに移動する
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<title>サンプル</title>
<script type="text/javascript">
<!--
function go_href() {
	window.location.href = "../index.html";
}
// -->
</script>
</head>
<body>
<a href="javascript:go_href();">進む</a>
</body>
</html>
直接使用する場合
<a href="javascript:location.href = '../index.html';">次のページ</a>
<a href="../index.html" onclick="location.href = '../index.html'; return false;">次のページ</a>

<a href="javascript:location.href('../index.html');">次のページ</a>	<!-- この方法は Internet Explorer のみ有効 -->
進む 次のページ

location.href = "???"; の ??? に移動先の URL を指定してください。

onclick 等のイベントハンドラを使用すれば、JavaScript が無効の場合には通常のリンク先に移動します。この時に location.href = this.href とするとアンカーの href に指定している URL を開きます。

アンカーの URL と location.href の URL が違う場合に location.href の方を優先する場合は return false; を追加して location.href 以外の動作を無効化しておきます。

[PR] 今なら1ヵ月無料でお試し!「オンラインDVD CDレンタルのぽすれん」