0

我有一个带有 < div> 的 html 文件,并且我正在加载到 UIWebView 中,我需要知道 div 中有多少行文本,所以我可以使用 javascript 检查:

<script>
function countLines() {
    var divHeight = document.getElementById('myDiv').offsetHeight;
    var lineHeight = parseInt(document.getElementById('myDiv').style.lineHeight);
    var lines = divHeight / lineHeight;
    alert("Lines: " + lines);
}
</script>

它确实提醒变量“行”

在 Objective-C 中,如何从我的 UIWebView 中检索此变量,然后在我的代码中使用它?

谢谢!

4

2 回答 2

8

UIWebView 方法stringByEvaluatingJavaScriptFromString:是 JavaScript 环境的唯一接口。它计算并返回您传递给它的 JavaScript 表达式值的字符串表示形式。因此,例如:

// simplified expression, no function needed
NSString *expr = @"document.getElementById('myDiv').offsetHeight / document.getElementById('myDiv').style.lineHeight";
// now pass it to the web view and parse the result
int lines = [[self.webView stringByEvaluatingJavaScriptFromString:expr] intValue];
于 2013-01-15T16:58:20.437 回答
3

这很简单:

NSString *jsString = @"function countLines() {var divHeight = document.getElementById('myDiv').offsetHeight;var lineHeight = parseInt(document.getElementById('myDiv').style.lineHeight);var lines = divHeight / lineHeight;return lines;};countLines();";

NSString *responseString = [MywebView stringByEvaluatingJavaScriptFromString:jsString];

而且您应该在 responseString 变量中有值,您可以将其从 NSString 转换为数字:-)

于 2013-01-15T16:57:39.087 回答