Jump to content
  • 0

.addClass(jQuery), classList.js и ie8


grafnet
 Share

Question

1. В js логике есть classList.add, для его работы в IE8 использую полифил classList.js. Однако, функции, которые используют classList.add по прежнему не отрабатывают(классы не добавляются), как если бы полифила и не было.
 
2. Делаю эмуляцию поддержки nth-child для IE8, вот таким способом хочу добавить дополнительный класс для ie8
 
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js"></script><script>$('.form input:nth-child(2n)').addClass('nth-child-2n');</script><style>  .nth-child-2n {    margin-right: 0;  }</style>

Но IE напрочь не собирается реагировать на это, и класс nth-child-2n не добавляться. Ошибок в js IE не видит.

 

Быть может, кто-то сталкивался с подобным?

Edited by grafnet
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Писал для нативного js метод для добавления класса. Работает в ie8

Element.prototype.addClass = function(clas) {    var s =this.className;    this.className += s === '' || s === undefined ? clas :' '+clas;    return this;};

Может чем поможет.

Edited by li4e
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