我有两个不同的 HTML 文件,两个不同UIWebViews
的 & 一个UISegmentControl
. 在 上segmentChanged
,我WebView
通过加载 HTML 文件显示了 。两个 HTML 文件都包含公共部分,仅更改了部分内容。现在我想实现这样的功能,当用户读取section 1.1
firstWebView
并点击Segment
加载 secondWebView
时,第二个WebView
需要scroll
达到section 1.1
他首先读取的内容WebView
,反之亦然。还有n个部分。我使用了以下 javacript 但它需要 current 的参数div id
。但是scroll
,我怎样才能获得当前的可见性div id
。我给了id
for each div
。
function pointInView(id)
{
var divid = document.getElementById(id);
divid.scrollIntoView(true);
return false;
}
任何人请帮助我。