How can I access content of a website within the PhoneGap WebView?
My application accesses a website with a login form. I want to grab & parse the resulting credentials/content displayed in the website.
Using the ChildBrowser Plugin, it seems that I don't have any access to the child bro开发者_如何学Cwsers content?
Thanks in advance Max
Have you looked at XMLHttpRequest? You should be able to use that in your JavaScript to request the page.
I'd use jQuery's .ajax() function for that!
精彩评论