0

我有一个 javascript 方法可以传递给 stringByEvaluatingJavaScriptFromString: 在 UIWebView 子类中。

var head = document.getElementsByTagName('head')[0],
    style = document.createElement('style'),
    rules = document.createTextNode('* { line-height: 20px !important; }');
style.type = 'text/css';
if(style.styleSheet)
    style.styleSheet.cssText = rules.nodeValue;
else style.appendChild(rules);
head.appendChild(style);

我已经将它添加到 stringByEvaluatingJavaScriptFromString: 方法中,只要我指定一个像素值,代码就可以工作。如果我使用像下面的代码这样的变量,它不会做任何事情。我究竟做错了什么?

我正在使用 largeBool 来告诉我间距是否需要增加或减少。然后我设置最大值和最小值,并使用线高作为变量。

   - (void)changeLineSpacingLarger:(BOOL)largerBool {

    if (largerBool == YES) { // A+
        lineHeight = (lineHeight < 100) ? lineHeight +10 : lineHeight;
    }

    else if (largerBool == NO) { // A-
        lineHeight = (lineHeight > 20) ? lineHeight -10 : lineHeight;
    }

    NSString *jsString = [[NSString alloc] initWithFormat:@"var head = document.getElementsByTagName('head')[0], style = document.createElement('style'), rules = document.createTextNode('* { line-height: '%d%%'px !important; }'); style.type = 'text/css'; if(style.styleSheet) style.styleSheet.cssText = rules.nodeValue; else style.appendChild(rules); head.appendChild(style);", lineHeight];
    [self stringByEvaluatingJavaScriptFromString:jsString];
}

我还使用 UIWebView 的 didFinishLoading 委托方法来保存当前的行距值。

- (void)updateLineSpacingValue {
    NSString *jsString = [[NSString alloc] initWithFormat:@"var element = document.getElementsByTagName('h1')[0], style = window.getComputedStyle(element), lh = style.getPropertyValue('line-height'); return lh;", textFontSize];
    NSString *stringValue = [self stringByEvaluatingJavaScriptFromString:jsString];

    lineHeight = [stringValue intValue];

    NSLog(@"Line Height: %i", lineHeight);
}

我得到的只是日志中的“0”。

提前致谢!

4

1 回答 1

0

First, line-height: '%d%%'px should be line-height: '%d'px. Otherwise, you will build something like line-height: '12%%'px, which won't be parsed when the source is rendered.


Second, stringValue will be something like "12px", so you cannot directly convert it to a number without removing "px".

于 2012-05-28T15:55:27.990 回答