Jump to content
  • 0

с помощью JS задать стиль для a:hover


Zippovich
 Share

Question

есть к примеру html:

<a href="#" id="hover">Hover</a>

Мне с помощью JS надо задать для этого <a> цвет при наведении, т.е. задать a:hover

на mootools могу задать для элемента цвет:

$('hover').setStyle('color', 'red');

но мне надо изменить цвет именно для :hover.

Подскажите, как это сделать.

P.S.: Кто-то знает можно ли с помощью javascript управлять не стилями какого-то элемента, а самими селекторами css, т.е. есть список селекторов, вот надо поменять свойства селектора a:hover

Edited by Zippovich
Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

<script type="text/javascript">
var docStyles = document.styleSheets[0];
if (docStyles.insertRule) {
docStyles.insertRule("#hover:hover {color: #0000FF;}", 0);
} else {
docStyles.addRule("#hover:hover", "color: #0000FF", 0);
}
function setHoverColor(r, g, b) {
var hexClr = (r > 0xF) ? r.toString(16) : "0" + r.toString(16);
hexClr += (g > 0xF) ? g.toString(16) : "0" + g.toString(16);
hexClr += (b > 0xF) ? b.toString(16) : "0" + b.toString(16);
var docStyles = document.styleSheets[0];
if (docStyles.insertRule) {
docStyles.deleteRule(0);
docStyles.insertRule("#hover:hover {color: #" + hexClr + ";}", 0);
} else {
docStyles.removeRule(0);
docStyles.addRule("#hover:hover", "color: #" + hexClr, 0);
}
}
</script>

Пример использования:

<form action="#" method="post">
R: <input name="R" type="text" /><br />
G: <input name="G" type="text" /><br />
B: <input name="B" type="text" /><br />
<input type="button" value="Set hover color" onclick="setHoverColor(parseInt(this.form.R.value), parseInt(this.form.G.value), parseInt(this.form.B.value));" />
</form>

P.S. Немного доработал. Предполагается, что стиль для #hover:hover изначально в CSS не значится.

Edited by Styx
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy