Calling Javascript using UIWebView(使用 UIWebView 调用 Javascript)
问题描述
我正在尝试使用该函数在 html 页面中调用 javascript -
I am trying to call a javascript in a html page using the function -
View did load function
{
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *writablePath = [documentsDirectory stringByAppendingPathComponent:@"BasicGraph.html"];
NSURL *urlStr = [NSURL fileURLWithPath:writablePath];
NSFileManager *fileManager = [NSFileManager defaultManager];
NSString *myPathInfo = [[NSBundle mainBundle] pathForResource:@"BasicGraph" ofType:@"html"];
[fileManager copyItemAtPath:myPathInfo toPath:writablePath error:NULL];
[graphView loadRequest:[NSURLRequest requestWithURL:urlStr]];
}
- (void) webViewDidFinishLoad:(UIWebView *)webView
{
[graphView stringByEvaluatingJavaScriptFromString:@"methodName()"];
}
这是 html 页面上的 javascript -
Here is the javascript on the html page -
<script>
function methodName()
{
// code to draw graph
}
但是,函数 methodName()
没有被调用,但是在 window.onload = function () 之后一切正常..
However, the function methodName()
is not getting called but after window.onload = function () everything is working fine..
我正在尝试将 RGraphs 集成到我的应用程序中,而 Basic.html
是其中的 html 页面javascript是写的.
I am trying to integrate RGraphs into my application and Basic.html
is the html page in which the javascripts are written.
如果有人能帮我解决这个问题,那就太好了.
It would be great if someone could help me out with this.
推荐答案
简单:你尝试在页面加载之前从 Objective-C 执行 JS 函数.
Simple: You try to execute the JS function from Objective-C before the page even has been loaded.
实现 UIWebView 的委托方法 webViewDidFinishLoad:
在您的 UIViewController 中并在其中调用 [graphView stringByEvaluatingJavaScriptFromString:@"methodName()"];
以确保在页面之后调用该函数已加载.
Implement the UIWebView's delegate method webViewDidFinishLoad:
in your UIViewController and in there you call [graphView stringByEvaluatingJavaScriptFromString:@"methodName()"];
to make sure the function gets called after the page has been loaded.
这篇关于使用 UIWebView 调用 Javascript的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 UIWebView 调用 Javascript


- Fetch API 如何获取响应体? 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- addEventListener 在 IE 11 中不起作用 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01