当我尝试在 UIWebView 中加载 html 字符串时遇到问题。这就是我正在做的
NSString *temp = [[NSString alloc] initWithFormat:@"<head><script type='text/javascript' src='code39.js'></script><style type='text/css'>#barcode {font-weight: normal; font-style: normal; line-height:normal; sans-serif; font-size: 12pt}</style></head><body><script type='text/javascript'>function get_object(id) {var object = null;if (document.layers) {object = document.layers[id];} else if (document.all) {object = document.all[id];}return object;}get_object('barcode').innerHTML=DrawCode39Barcode('%@',2);</script></body>",[count objectAtIndex:i]];
[mainWebView loadHTMLString:temp baseURL:nil];
所以这是问题所在:
<script type='text/javascript' src='code39.js'>
如何在我的应用程序中添加 code39.js 文件,以便我的 html 可以访问它并将其加载到 UIWebview 中。
请帮忙...