Jump to content
  • 0

Изменение стиля объекта с якорем при переходе на него.


SCHNITZER
 Share

Question

Идея такая.

<a href="#linkHere"><p>Ссылка</p></a>

ляляля

<p id='linkHere'>Here Comes Some Text</p></a>

Мне бы хотелось, чтобы при переходе на linkHere абзац становился, например, красным. Но при этом, до перехода на него, имел стиль всего документа.

Потом при переходе на другой абзац - предыдущий становился опять как все остальное, и изменялся стиль нового абзаца.

#linkHere:target {color:Red;} - не кроссбраузерный вариант.

Как реализовать?

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0
<script type="text/javascript">
if(document.getElementsByClassName == undefined) {
document.getElementsByClassName = function(cl) {
var retnode = [];
var myclass = new RegExp('\\b'+cl+'\\b');
var elem = this.getElementsByTagName('*');
for (var i = 0; i < elem.length; i++) {
var classes = elem[i].className;
if (myclass.test(classes)) {
retnode.push(elem[i]);
}
}
return retnode;
}
};
function perexod(trgt) {
for (var i = 0; i < a.length; i++) { a[i].style.color = 'black'; }
var a = document.getElementsByClassName('reset');
document.getElementById('linkHere').style.color = 'red';
location.href='#' + trgt;
}
</script>

<a href="#" onclick="perexod('linkHere'); return false;" ><p>Ссылка</p></a>

<p id='linkHere' class="reset">Here Comes Some Text</p></a>

Edited by stars
Link to comment
Share on other sites

  • 0
ВОТ ЭТО ДАААА )))))

Я смотрю ты очень часто удивляешься разным решениям, которые тебе делают другие. Пора бы уже самому начать учиться. Как ты на это смотришь дружище?

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