如何在UIWebView中打开“index.html#page1”本地链接?

时间:2015-03-04 09:27:34

标签: html ios objective-c url webview

我在网页视图中使用了以下代码来打开本地HTML文件

NSString *htmlFile = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"];
NSString* htmlString = [NSString stringWithContentsOfFile:htmlFile encoding:NSUTF8StringEncoding error:nil];
[webView loadHTMLString:htmlString baseURL:nil];

但现在我想打开“index.html#page1”类型的HTML链接。其中“index.html”是主HTML文件,“#page1”是同一HTML文件中的div id。像

<div data-role="page" id="page1"></div>

如何在WebView上使用此类型的HTML链接?

0 个答案:

没有答案