在加载本地web中有些链接的二级界面带有#字符会被转义,如果需要强制保留#字符,可以
NSString *FileString = @".......index.html#/";
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"file://%@",self.FileString]];
[self.webView loadRequest:request];
这样就会保留链接中的#号