例如,如果您在浏览器地址栏中输入https://translate.google.com/#en/la/werwer,它将打开https://translate.google.com,并用“ werwer”填充“ translate from”字段。怎么做?

最佳答案

它通过location对象完成。您也可以做到。

像这样:

window.location.hash="werwer";


您可以使用相同的解析。

var hash = window.location.hash; // contains #en/la/werwer

09-25 17:11