在 UIWebview 中加载 Javascript+Html 内容
Posted
技术标签:
【中文标题】在 UIWebview 中加载 Javascript+Html 内容【英文标题】:Load Javascript+Html content in UIWebview 【发布时间】:2015-02-24 18:29:22 【问题描述】:我正在尝试在 uiwebview 中加载从服务器返回的 javascript + html 内容。请发现我的代码没有加载,
<span class="wc5element"onclick="tvrTrackClick('chat')"><span class="wc5element"> </span><span class="wc5element"></span><divstyle="display: none;" id="WCcopyright"><a href="http://www.livecom.net">livecom.net chat</a></div><script charset="ISO-8859-1" type="text/javascript" src="//wheur.livecom.net/....="></script>
NSString *myHTML = [NSString stringWithFormat:@"%@",decodevalue]; [self.webView loadHTMLString:myHTML baseURL:nil];
【问题讨论】:
【参考方案1】:NSString *urlAddress = @"http://www.livecom.net/en/";
//Create a URL object.
NSURL *url = [NSURL URLWithString:urlAddress];
//URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
//Load the request in the UIWebView.
[YourWebView loadRequest:requestObj];
让我知道它是否有效
【讨论】:
感谢这样它会起作用,我不想加载这个 url livecom.net/en。相反,我想加载如上所述的 html+javascript 内容,这是一个不同的页面。我想触发 onclick 功能 (onclick="tvrTrackClick('chat')) 实际上 ""以上是关于在 UIWebview 中加载 Javascript+Html 内容的主要内容,如果未能解决你的问题,请参考以下文章
Swift 2 - 无法在单独的 ViewController 中加载 UIWebView
在 UIWebview 中加载 Javascript+Html 内容
在 UITableViewCell 中加载 UIWebView 并根据 UIWebview 的内容制作 UITabViewCell 的高度