是否可以同时定义一个锚点以滚动到一个 URL并在框架中设置一个变量?我尝试使用下面的代码,但这在 Chrome 中不起作用。我可以使用与符号以外的其他分隔符使其工作吗?
<!doctype html>
<html>
<head>
<title>Scroll to anchor test</title>
</head>
<body>
<p><a href="#bottom">Scroll to bottom</a> (works)</p>
<p><a href="#bottom&test=testing">Scroll to bottom and include
variable in the frament</a> (doesn't work)</p>
<p style="margin-top: 2000px">Bottom of page</p>
<p><a name="bottom">#bottom</a></p>
</body>
</html>
JSFiddle 上面的代码:http: //jsfiddle.net/janaagaard/FHdQr/