0
我對UIWebView
有一個非常奇怪的錯誤,我將一個非常簡單的html加載到UIWebView
:UIWebView iOS document.getElementByID不起作用
[self.webview loadHTMLString:@"<html><body><div id='hello'>hello world</div></body></html>" 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,所有其他行只返回一個空字符串@「」。我的代碼有什麼問題?如何獲得id爲hello
div
嘗試使用分號在每個JS語句的結束。 –
它仍然不起作用:( – vodkhang
如果你切換前兩個調用,'helloValue'是否有值? –