SE@RCHER
SE@RCHER
Библиотека JAVASCRIPT
03www.ru
Библиотека JAVASCRIPT
03www.ru
Библиотека JAVASCRIPT
03www.ru
Золотая библиотека JAVASCRIPT
1997
примеры библиотеки javascriptПОЛЕЗНЫЕ СОВЕТЫ JAVASCRIPT + CSS
примеры библиотеки javascriptПОЛЕЗНЫЕ СОВЕТЫ JAVASCRIPT + CSS
примеры библиотеки javascriptПОЛЕЗНЫЕ СОВЕТЫ JAVASCRIPT + CSS

Взаимодействие CSS и JavaScript


Иногда возникает проблема изменения свойств стилей объектов не напрямую через HTML код, а в теле скрипта JavaScript. Для этих целей применяются аналоги свойств CSS в JavaScript.

Для каждого вида браузера есть свои собственные методы изменения свойств стилей.

Для Internet Explorer используется метод all:

document.all.object.style.js_свойство = "новое_свойство_CSS"

где object - имя объекта, которому необходимо изменить свойство.

В старых версиях Netscape (4.7 и ниже) свойства изменялись следующим образом:

document.object.style.js_свойство = "новое_свойство_CSS"

В настоящее время для Netscape, Opera, FireFox и Internet Explorer используется универсальный вариант с применением метода getElementById:

document.getElementById(object).style.js_свойство = "новое_свойство_CSS"

Обратите внимание, что название метода начинается с прописной буквы, а каждое последующее слово - с заглавной. Это обязательное правило, так как JavaScript достаточно внимательно смотрит за регистром методов и свойств. Данное правило необходимо использовать и в описании свойств CSS в JavaScript. Например:

document.getElementById("div1").style.fontSize = "10"

Ниже приведена таблица основных свойств CSS и их аналогов в JavaScript:


Свойство CSS Аналог JavaScript
background-attachment backgroundAttachment
background-color backgroundColor
background-image backgroundImage
background-position backgroundPosition
background-repeat backgroundRepeat
border border
border-bottom borderBottom
border-bottom-color borderBottomColor
border-bottom-style borderBottomStyle
border-bottom-width borderBottomWidth
border-color borderColor
border-left borderLeft
border-left-color borderLeftColor
border-left-style borderLeftStyle
border-left-width borderLeftWidth
border-right borderRight
border-right-color borderRightColor
border-right-style borderRightStyle
border-right-width borderRightWidth
border-style borderStyle
border-top borderTop
border-top-color borderTopColor
border-top-style borderTopStyle
border-top-width borderTopWidth
border-width borderWidth
clear clear
clip clip
color color
cursor cursor
display display
filter filter
font font
font-family fontFamily
font-size fontSize
font-variant fontVariant
font-weight fontWeight
height height
left left
letter-spacing letterSpacing
line-height lineHeight
list-style listStyle
list-style-image listStyleImage
list-style-position listStylePosition
list-style-type listStyleType
margin margin
margin-bottom marginBottom
margin-left marginLeft
margin-right marginRight
margin-top marginTop
overflow overflow
padding padding
padding-bottom paddingBottom
padding-left paddingLeft
padding-right paddingRight
padding-top paddingTop
page-break-after pageBreakAfter
page-break-before pageBreakBefore
position position
float styleFloat
text-align textAlign
text-decoration textDecoration
text-decoration: blink textDecorationBlink
text-decoration: line-through textDecorationLineThrough
text-decoration: none textDecorationNone
text-decoration: overline textDecorationOverline
text-decoration: underline textDecorationUnderline
text-indent textIndent
text-transform textTransform
top top
vertical-align verticalAlign
visibility visibility
width width
z-index zIndex