Can't Access CSS Selector's Properties from Javascript

前端 未结 5 762
隐瞒了意图╮
隐瞒了意图╮ 2020-12-06 08:21

Here\'s a very basic question: why is the finishLoading() function in the code below not able to access the \'opacity\' property for the #myStyle CSS selector? The alert doe

相关标签:
5条回答
  • 2020-12-06 08:29

    Opacity should be a number rather than a boolean. Is it working in any other browseR?

    0 讨论(0)
  • 2020-12-06 08:43

    You can get the values set through class only after their computation.

    var oElm = document.getElementById ( "myStyle" );
    var strValue = "";
    if(document.defaultView && document.defaultView.getComputedStyle)
    {
    strValue = document.defaultView.getComputedStyle(oElm, null).getPropertyValue("-moz-opacity");
    }
    else if(oElm.currentStyle)    // For IE
    {
    strValue = oElm.currentStyle["opacity"];
    }
    
    alert ( strValue );
    
    0 讨论(0)
  • 2020-12-06 08:44

    I suggest you take a look at jQuery and some of the posts at Learning jQuery, it will make doing things like this very easy.

    0 讨论(0)
  • 2020-12-06 08:47

    The problem is, that element.style.opacity only stores values, that are set inside the element's style attribute. If you want to access style values, that come from other stylesheets, take a look at quirksmode.

    Cheers,

    0 讨论(0)
  • 2020-12-06 08:48

    this link help

    http://www.quirksmode.org/js/opacity.html

    function setOpacity(value) {
        testObj.style.opacity = value/10;
        testObj.style.filter = 'alpha(opacity=' + value*10 + ')';
    }
    

    opacity is for Mozilla and Safari, filter for Explorer. value ranges from 0 to 10.

    0 讨论(0)
提交回复
热议问题