Jump to content
  • 0

Не работает скрипт в IE


tt48
 Share

Question

Доброго времени суток.

Решил календарик забодяжить, все вродь ничего, но вот ИЕ показал свои мохнатые уши.(

Скрипт для часов и прокрутки месяцев работают, а вот заполнение таблицы календарика не происходит..

Насколько я понял, его чем-то неустраивает строка "k.innerHTML="";" в функции run_calendar_to.

Заранее спасибо.

С ув. я.

http://www.beavers-net.narod.ru/clock_n_date.html

var 
monthes=['фев','мар','апр','май','июн','июл','авг','сен','окт','ноя','дек','янв'],
k, date, mon, today, year, param=0;
function init_kalendar(){
k=document.getElementById('kalendar');
date=new Date();
mon=date.getMonth();
today=date.getDate();
year=date.getFullYear();
}
function run_kalendar_to(direction){
param+=direction;
var new_date=new Date(year,mon+param,0);
var fstday=new_date.getDay();
var day_quo=new Date(year,mon+1+param,0).getDate();
var pred_day_quo=new_date.getDate();
var curr_mon=new_date.getMonth(), curr_year=new_date.getFullYear();
if(curr_mon==11)curr_year++;
document.getElementById('kalendar_date').innerHTML=monthes[curr_mon]+" "+curr_year;
var s="", dc=0, kk=0;
var c_oth=pred_day_quo-fstday;
k.innerHTML="";
for(var i=1;i<7;i++){
if(dc >= day_quo)break;
s="<tr>";
for(var j=0;j<7;j++){
++kk;
if(kk > fstday){
dc++;
}
if(dc>0 && dc<=day_quo){dc==today?s+="<td class='today'>"+dc:s+="<td>"+dc;}
else{
(c_oth>20&&dc>day_quo)?c_oth=1:++c_oth;
s=s+"<td class='oth_mon'>"+(c_oth);
}
s+="</td>";
}
s+="</tr>";
k.innerHTML+=s;
}
}

Edited by tt48
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0
Если таблица генерится скриптом, то без <tbody> она в IE не отобразится.

<tbody> присутствует статически, так что проблема остаётся.. Спасибо, буду знать.

——————

Методом подбора выяснил, что ему не навятся все элементы таблицы, кроме <td>...

В остальных тегах он считает ошибочным использование id для innerHTML...Даже не знаю, как это обойти,(

——————

Обошел записью целой таблицы в ячейку <td>...радости мало.

Еще был баг - нельзя записывать части HTML-разметки по частям - браузер автоматически достраивает часть

кода и получается асинхронная фигня. --Записал все в одну строку и её уже записал в ячейку.

Теперь работает нормально, только тормозит сильнее,( Зато работает даже в 5 ослике.

Спасибо всем, кто потратил на меня своё время,)

Удачи.

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