Inject a local javascript into UIWebView(将本地 javascript 注入 UIWebView)
问题描述
有没有办法将本地 JS 文件或存储在我服务器上的 JS 文件注入到 UIWebView 加载的任何网页中?
Is there a way to inject a local JS file or a JS file that's store on my server into any web page loaded by UIWebView?
假设我在该 UIWebView 中导航到 google.com,它会呈现该页面并运行我的 JS 文件(本地或在我的网络服务器上)?
Say I navigate to google.com in that UIWebView, it renders that page and also runs my JS file (local or on my webserver)?
推荐答案
下面的代码会在本地注入javascript
The following code will inject javascript locally
- (void)injectJavascript:(NSString *)resource {
NSString *jsPath = [[NSBundle mainBundle] pathForResource:resource ofType:@"js"];
NSString *js = [NSString stringWithContentsOfFile:jsPath encoding:NSUTF8StringEncoding error:NULL];
[self.webView stringByEvaluatingJavaScriptFromString:js];
}
只需在js前传入文件名即可,例如.
Just pass in the name of the file before the js, eg.
[self injectJavascript:@"script"];
要从您的服务器注入 javascript,您可以先下载它并以类似的方式将其加载到 Web 视图中.
To do inject javascript from your server you can download it first and load it into the web view in a similar manner.
这篇关于将本地 javascript 注入 UIWebView的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将本地 javascript 注入 UIWebView
基础教程推荐
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01