Сообщение от jay-S
|
в итоге переход не происходит а просто в адресной строке меняется номер якоря
|
У меня переходит...
Мой tmp.html файл.
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<!--
<script src='http://code.jquery.com/jquery-latest.js'></script>
<script src="https://code.angularjs.org/1.3.9/angular.min.js"></script>
<script src="https://code.angularjs.org/1.3.9/angular-route.js"></script>
-->
<style type='text/css'>
html,
body {
height: 100%;
}
div {
height: 200%;
}
</style>
<script type='text/javascript'>
function test(){
top.location='tmp.html#itm1';
};
</script>
</head>
<body>
<div id='itm0'>
<p>itm0</p>
<button onclick='test();'>Test</button>
</div>
<div id='itm1'>
<p>itm1</p>
</div>
</body>
</html>