有没有办法加载html文件并在页面加载时将参数传递给url?
让我们说应用加载index.html。有没有办法让URL成为index.html?locale = ru而不是index.html?
当然,如果您只是从某个地方点击,这很容易,但我希望将参数添加到网址" onload"。
我在考虑这样的事情:
window.onload = function() {
window.location.href= '?parameter1¶meter2'
}
答案 0 :(得分:0)
这非常有效:
window.location.replace("index.html#parameter1#parameter2");