我正在尝试使用 UIWebView 来显示内容,并使用 jQuery 来操作该内容,但我无法加载 jQuery。这是我设置 UIWebView、设置 baseURL 和加载内容(本地包中的 HTML 文件)的代码:
UIWebView *view = [[UIWebView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
NSString *path = [[NSBundle mainBundle] bundlePath];
NSURL *baseURL = [NSURL fileURLWithPath:path];
NSData *htmlData = [[NSData alloc] initWithContentsOfURL: [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"]]];
NSString *htmlString = [[NSString alloc] initWithData:htmlData encoding:NSUTF8StringEncoding];
[view loadHTMLString:htmlString baseURL:baseURL];
内容加载得很好,我已经通过将图像添加到包并在 HTML 中引用它来确认 baseURL 是正确的,并且它可以工作。在我的 Macbook jQuery 上的 Safari 中使用相同的 HTML 加载也很好,并且按预期工作。
我已经尝试过使用压缩的 jquery-1.3.2.min.js 和开发的 jquery-1.3.2.js,但都没有骰子。
有任何想法吗?