I'm trying to load an HTML page that has text fields into a webview, edit the text in text fields and then get the HTML data in that webview.
I'm using this code to load the page:
NSString* path = [[NSBundle mainBundle] pathForResource:@"file" ofType:@"htm"];
NSData* xmlData = [NSData dataWithContentsOfFile:path];
[web loadData:xmlData MIMEType:@"text/html" textEncodingName:nil baseURL:nil];
And this code to get the content and set it again in the webview:
NSString *myText = [web stringByEvaluatingJavaScriptFromString:@"document.all[0].innerHTML"];
data = [myText dataUsingEncoding:NSUTF8StringEncoding];
[web loadData:data MIMEType:@"text/html" textEncodingName:nil baseURL:nil];
The problem is that the text I inserted in the text field is not being returned from the webview.
I tried document.body.innerHTML and document.body.outerHTML, they all return the HTML page data the way I loaded it.
Is there anyway to get the HTML page data that includes text I inserted there?
value(not innerHTML) of the test fields. – Torsten Walter Jul 19 '12 at 22:22innerHTMLandouterHTMLwill return the original HTML code that is the page source, and the page source does not actually change when you edit the text field values. As @TorstenWalter says, you need to get thevalueof the fields, not the HTML, then insert them into the HTML code for the page that you have stored. – PartiallyFinite Dec 30 '12 at 0:06