Jump to content
  • 0

FF и русский язык..


Nekromancer
 Share

Question

Это глюк ФФ что он не понимает русский язык в JavaScript?

вот я написал такую функцию:

function ablilOpen(abilName) {
abilWin=window.open('content/abilities/abil.htm', '', 'width=500, height=600, scrollbar=1, resizable=1');
abilWin.document.getElementById("abil-bg").innerHTML = '<img src="images/' + abilName + '.jpg" id="abil-image" alt="' + abilName + '" title="' + abilName + '" />';
abilWin.document.title = abilName;
abilWin.document.getElementById("abil-title").innerHTML = '<div>' + abilName + '</div>';
}

и вызываю её через

<a href="#" onClick="ablilOpen(this.innerHTML)">Огненный Шар</a>

по идее в новое окно должна загружаться картинка с таким же именем и в заголовке тоже должно писаться это имя.. в Опере и ИЕ работает, а в ФФ нет, видимо он не понимает русские символы в таких операциях..

Может кто знает что можно ещё придумать чтоб всё получалось?

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0
не:)( нифига.. всем файлам поменял кодировку, не помогло...%)

в ff: инструменты>> консоль ошибок (Ctrl+Shift+J) там моно узнать как она (ошибка) обзывается. А узнав врага в лицо легче с ним бороться. :)

яваскрипчиков попытать узкопрофильных там :)...

Link to comment
Share on other sites

  • 0

А ты не думал, что во время обращения скрипта к элементу он ещё не существует? Попробуй так:

function ablilOpen(abilName) {
abilWin=window.open('abil.htm', '', 'width=500, height=600, scrollbar=1, resizable=1');

abilWin.onload = function() {
abilWin.document.getElementById("abil-bg").innerHTML = '<img src="images/' + abilName + '.jpg" id="abil-image" alt="' + abilName + '" title="' + abilName + '" />';
abilWin.document.title = abilName;
abilWin.document.getElementById("abil-title").innerHTML = '<div>' + abilName + '</div>';
}

}

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