我想在id="demo"
单击链接时显示更新的锚点/哈希。文档的布局如下。
<html>
<head>
<script type="text/javascript">
function myfunction()
{
document.getElementById("demo").innerHTML=location.hash;
}
</script>
</head>
<body>
<h1>Javascript</h1>
<p id="demo">This is a paragraph.</p>
<a href="#example" onclick="myfunction()">here</a>
</body>
</html>
唯一的问题是,当点击链接时,javascript 不会获得更新的锚/哈希,直到第二次按下链接。