我正在调用我的Javascript函数并在其中发送变量/字符串。但是在javascript中没有调用相同的函数。
NSString *jsCallBack = [NSString stringWithFormat:@"setLegend('%@')",result];
[webview stringByEvaluatingJavaScriptFromString:jsCallBack];
在Javascript中
function setLegend(lStr)
{
}
请让我知道什么是错的?