0
我試圖在webview中使用此JavaScript打印HTML,但它實際上是打印<p>HELLO</p>
。我該如何解決這個問題?在代碼中使用JavaScript在webview中設置HTML內容。
NSString* statement = [NSString stringWithFormat:@"document.getElementById('test').innerText = '<p>HELLO</p>'"];
[self.myWebView stringByEvaluatingJavaScriptFromString:statement];
http://stackoverflow.com/questions/992348/reading-html-content-from-a-uiwebview只是檢查它是否有幫助 – hacker