საიტის გასაუმჯობესებელი სამუშაოების მიმდინარეობისას, შესაძლებლობების ნაწილი შეიზღუდება. თუ სტატიით ვერ მოახერხებ ხარვეზის გამოსწორება და შეკითხვის დასმა გსურთ, ჩვენი მხარდაჭერის გუნდი დაგეხმარებათ @FirefoxSupport გვერდის მეშვეობით Twitter-ზე და /r/firefox განყოფილებაში Reddit-ზე.

ძიება მხარდაჭერაში

ნუ გაებმებით თაღლითების მახეში მხარდაჭერის საიტზე. აქ არასდროს მოგთხოვენ სატელეფონო ნომერზე დარეკვას, შეტყობინების გამოგზავნას ან პირადი მონაცემების გაზიარებას. გთხოვთ, გვაცნობოთ რამე საეჭვოს შემჩნევისას „დარღვევაზე მოხსენების“ მეშვეობით.

ვრცლად

Why a css attribute defined using a class in css is not acessible via style property in javascript?

  • 4 პასუხი
  • 1 მომხმარებელი წააწყდა მსგავს სიძნელეს
  • 6 ნახვა
  • ბოლოს გამოეხმაურა jscher2000 - Support Volunteer

for example html

<div id="greendiv" class="green"></div>

 css
.green {
background-color: green;
}
javascript:
var divcolor = document.getElmentById("greendiv").style.backgroundColor;

Problem: divcolor does not get 'green', backgroundColor has no value;

the same is true for 'getAttribute()';

for example html <pre><nowiki><div id="greendiv" class="green"></div> css .green { background-color: green; }</nowiki></pre> javascript: <pre><nowiki>var divcolor = document.getElmentById("greendiv").style.backgroundColor; </nowiki></pre> Problem: divcolor does not get 'green', backgroundColor has no value; the same is true for 'getAttribute()';

ჩასწორების თარიღი: , ავტორი: cor-el

ყველა პასუხი (4)

That only works if you define the background-color via a style attribute and not via a style sheet.

<div id="greendiv" style="background-color: green;"></div>
var divcolor = document.getElementById("greendiv").style.backgroundColor;

Otherwise you need to use getComputedStyle

N=document.getElementById("greendiv");
window.getComputedStyle(N,'').getPropertyValue("background-color");
document.defaultView.getComputedStyle(N,'').getPropertyValue("background-color");

https://developer.mozilla.org/en-US/docs/Web/API/Window/getComputedStyle https://developer.mozilla.org/en-US/docs/Web/API/Document/defaultView

That is annoying a simple change in design and the code is broken...

There ain't a way to reach the data no matter how I set up?

The web is really disgusting all those silly and incompatible standards that just bloat up memory and cause no ease ...

Hi alfgaar, this is very old behavior, and you're not the first person to find it clumsy/awkward to have to use getComputedStyle().

To give you an example, here's an article from April 2006 proposing an alternate function that can easily check both inline styles and other styles in one step:

https://robertnyman.com/2006/04/24/get-the-rendered-style-of-an-element/

You may find it more convenient to use a JavaScript library for this, or grab some of their code for your use. For example, using jQuery:

http://api.jquery.com/css/