Jump to content
  • 0

Поведение скрипта в ие


topos
 Share

Question

Добрый день. Такая проблема, на странице регистрации есть чекбокс "Создать учетную запись?". При отключение убираются поля логин и пароль. Все бы хорошо но в ие (пробовал 7 и 8 ) Они убираются только после еще одного щелчка на странице. При том в других браузерах все нормально. http://smart.gitcom.ru/index.php?option=co...on&Itemid=5

Код чекбокса

<div class="formLabel">
<input type="checkbox" id="register_account" name="register_account" value="1" class="inputbox" onchange="showFields( this.checked, new Array(\'username\', \'password\', \'password2\') );if( this.checked ) { document.adminForm.remember.value=\'yes\'; } else { document.adminForm.remember.value=\'yes\'; }" checked="checked" />
</div>
<div class="formField">
<label for="register_account">'.$VM_LANG->_('VM_REGISTER_ACCOUNT').'</label>
</div>

Скрипт

<script type="text/javascript">
//<![CDATA[
function showFields( show, fields ) {
if( fields ) {
for (i=0; i<fields.length;i++) {
if( show ) {
document.getElementById( fields[i] + \'_div\' ).style.display = \'\';
document.getElementById( fields[i] + \'_input\' ).style.display = \'\';
} else {
document.getElementById( fields[i] + \'_div\' ).style.display = \'none\';
document.getElementById( fields[i] + \'_input\' ).style.display = \'none\';
}
}
}
}
try {
showFields( document.getElementById( \'register_account\').checked, new Array(\'username\', \'password\', \'password2\') );
} catch(e){}
//]]>
</script>';

Страница

http://smart.gitcom.ru/index.php?option=co...on&Itemid=5

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Что показывают алерты в ИЕ? Например:

function showFields( show, fields ) {
alert(show);
if( fields ) {
for (i=0; i<fields.length;i++) {
if( show ) {
document.getElementById( fields[i] + \'_div\' ).style.display = \'\';
document.getElementById( fields[i] + \'_input\' ).style.display = \'\';
} else {
document.getElementById( fields[i] + \'_div\' ).style.display = \'none\';
document.getElementById( fields[i] + \'_input\' ).style.display = \'none\';
alert(document.getElementById( fields[i] + \'_input\' ));
}
}
}
}

UPD: И да, new Array можно заменить на []. От так:

<input type="checkbox" id="register_account" name="register_account" value="1" class="inputbox" onchange="showFields( this.checked, [\'username\', \'password\', \'password2\'] );if( this.checked ) { document.adminForm.remember.value=\'yes\'; } else { document.adminForm.remember.value=\'yes\'; }" checked="checked" />

А это какое-то странное условие:

if( this.checked ) { document.adminForm.remember.value=\'yes\'; } else { document.adminForm.remember.value=\'yes\'; }

Link to comment
Share on other sites

  • 0
Что показывают алерты в ИЕ? Например:

Если чекбокс включен то true при отключение false. Вот только снова же в FF, Chrome, Opera, сообщение выскакивает сразу после щелчка по чекбоксу, а в IE только после того как отметили(или сняли метку) чек бокс, и щелкнули куда угодно на странице

Потестил, событие onchange в ИЕ возникает после потери фокуса с элемента. Но проблемы это не решает. Что можно сделать чтобы работало нормально? Помогите разобраться. :)

заменил onchange на onclick заработало :)

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