我想使用 stringByEvaluatingJavaScriptFromString 来运行一个javascript,它引用设备上的本地文件(在这种情况下是css文件,但也可能是js文件)(我猜是在Documents文件夹中?)...
NSString *theJS = [[NSString alloc]
initWithString:@"javascript:(function()
{the_css.rel='stylesheet';
the_css.href='the_css.css';
the_css.type='text/css';
the_css.media='screen';}
)();"];
[webView stringByEvaluatingJavaScriptFromString:theJS];
我怎样才能让它工作?如果我使用外部 css 文件,它工作正常,比如
the_css.href='http://www.website.com/the_css.css';