3

我正在为 HTML5 内容实现 Android 本机界面,并且正在加载页面

webView.loadUrl("file://" + path);

这确实按预期正确显示,我的问题是:我确实有一个可用锚链接的列表,例如:

#/tema/5eefaa35ca922dcd44366cfd0da81910
#/tema/e2f970027838177c49f83996970620d3

我正在尝试导航到加载的 WebView 上的锚点,但没有得到它:

我的尝试:

webView.loadUrl("javascript:document.location="+hashLink);
webView.loadUrl("javascript:window.location.hash="+hashLink);

但是没有一个有效,在这一点上,我没有与 hashLink 一起使用的原始链接,而且我确实想避免重新加载 Web 内容。

4

0 回答 0