我想用stringByEvaluatingJavaScriptFromString運行JavaScript它引用本地文件(在這種情況下css文件,但潛在的js文件太多),這是在設備上(Documents文件夾中我猜?)...是否有可能使用Javascript引用本地文件的stringByEvaluatingJavaScriptFromString?
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';