Jump to content
  • 0

i больше чем длина элмента


Nekromancer
 Share

Question

Помогите пожалуйста, вот писал скрипт для искусственного селекта и вроде всё нормально шло, пока переменная в цикле не начала неправильно увеличиваться.. помогите пожалуйста, хотя бы скажите в чём конкретно проблема.

var jsCustomSelect = getElementsByClass('jsCustomSelect');
var jsCustomSelectLen = jsCustomSelect.length;
var jsCustomSelectHeight = new Array();
var jsCSOptionsHeight = new Array();

for(i = 0; i < jsCustomSelectLen; i++){
var newElem = function(elem){return document.createElement(elem);};
jsCustomSelectHeight.push(jsCustomSelect[i].clientHeight);
jsCSOptionsHeight.push(getOptionsHeight(i));
jsCustomSelect[i].getElementsByTagName('ul')[0].className = 'jsCustomSelectOptions';
var jsCSOptions = jsCustomSelect[i].getElementsByTagName('li');
for(j=0, jsOptLen = jsCSOptions.length; j < jsOptLen; j++){
jsCustomSelect[i].getElementsByTagName('li')[j].style.height = jsCSOptionsHeight[i]+'px';
}
jsCustomSelect[i].insertBefore(newElem('ul'), jsCustomSelect[i].firstChild).className = 'jsCustomSelectTitle';
var jsCSOptionNew = getElementsByClass('jsCustomSelectOptions',jsCustomSelect[i]);
for(z=0,jsOptNewLen = jsCSOptionNew.length; z<jsOptNewLen; z++){
var FirstOpt =jsCSOptionNew[z].getElementsByTagName('li')[0];
getElementsByClass('jsCustomSelectTitle',jsCustomSelect[i])[z].appendChild(FirstOpt.cloneNode(true));
FirstOpt.className += 'activeSelectItem';
}

}

Edited by Nekromancer
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0
function getElementsByClass(searchClass,node,tag) {
var classElements = new Array();
if ( node == null )
node = document;
if ( tag == null )
tag = '*';
var els = node.getElementsByTagName(tag);
var elsLen = els.length;
var pattern = new RegExp('(^|\\\\s)'+searchClass+'(\\\\s|$)');
for (i = 0, j = 0; i < elsLen; i++) {
if ( pattern.test(els[i].className) ) {
classElements[j] = els[i];
j++;
}
}
return classElements;
}

Link to comment
Share on other sites

  • 0

да, надо добавить.. проблема только в этом?

ой, забыл написать.. i в конце выполнения цикла 25. хотя длина 1.

а. всё добил, мои переменный конфликтуют с переменными из функции получения класса.. Спасибо :D)

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