如何访问加载到 iOS 中的 UIWebView 中的 HTML 页面的元数据?
How to access Meta Data of a HTML page loaded into a UIWebView in iOS?
您可以通过以下方式访问元标记的内容,
You can access the meta tag's content by,
NSString *graphURL = [webView stringByEvaluatingJavaScriptFromString:@"document.getElementsByName('facebook_share')
[0].getAttribute('content')"];
您可以在其中更改内容"中声明的属性名称
where you can change the attribute name declared in 'content'
这篇关于从 UIWebView 访问元数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!