当前位置:  开发笔记 > 编程语言 > 正文

UIWebView iOS document.getElementByID不起作用

如何解决《UIWebViewiOSdocument.getElementByID不起作用》经验,为你挑选了1个好方法。

我有一个非常奇怪的错误UIWebView,我将一个非常简单的html加载到UIWebView:

[self.webview loadHTMLString:@"

hello world
" baseURL:nil];

然后拨打以下4行:

NSString *body = [self.webview stringByEvaluatingJavaScriptFromString:
                    @"document.getElementsByTagName('body')[0].outerHTML"];

NSString *helloValue = [self.webview stringByEvaluatingJavaScriptFromString:
                    @"document.getElementByID('hello').value"];

NSString *helloOuter = [self.webview stringByEvaluatingJavaScriptFromString:
          @"document.getElementByID('hello').outerHTML"];

NSString *helloInner = [self.webview stringByEvaluatingJavaScriptFromString:
                @"document.getElementByID('hello').innerHTML"];

NSString *helloElement = [self.webview stringByEvaluatingJavaScriptFromString:
          @"document.getElementByID('hello')"];

只有第一行,使用getElementsByTagName返回正确的body html,所有其他行只返回一个空字符串@"".我的代码有什么问题?我怎样才能得到div那个有id的hello



1> vodkhang..:

我想出了问题:这是我愚蠢的拼写错误,getElementById而不是getElementByID

推荐阅读
U友50081205_653
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有