Jump to content
  • 0

Checked. true!=true?


tt48
 Share

Question

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

function chck(id){
var a=document.getElementById(id);
if(a.checked!="true"){
a.checked='true';
}
else{
a.checked='false';
}
}

Собственно, галочку он проставляет, а вот обратно - никак.

Сверял в Dragonfly - все он меняет, как надо, но вот проверку не проходит на "отмечено".

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

С уважением, Олег.

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

Блин true и false - это булевый тип переменных. Зачем вы их строками сделали?

function chck(id){
var a=document.getElementById(id);

if( a.checked )
{
a.checked = false;
}
else
{
a.checked = true;
}
}

или

function chck(id)
{
var a = document.getElementById(id);

a.checked = ( a.checked ? false : true );
}

Edited by Ялекс
Link to comment
Share on other sites

  • 0
Нет, там всем делом заправляют булевые значения. checked="checked" пошло скорей всего от того, что нельзя опускать вторую часть атрибута. Хотя выглядит это не очень.

Если судить по тому, что показывает Dragonfly и поставленный опыт - только булевые значения.

Спасибо, работает. Строками сделал, т.к. считал, что они хранятся строками, как и остальные параметры.

Link to comment
Share on other sites

  • 0
Блин true и false - это булевый тип переменных. Зачем вы их строками сделали?

function chck(id){
var a=document.getElementById(id);

if( a.checked )
{
a.checked = false;
}
else
{
a.checked = true;
}
}

или

function chck(id)
{
var a = document.getElementById(id);

a.checked = ( a.checked ? false : true );
}

А не проще вместо

a.checked = ( a.checked ? false : true );

написать

a.checked = ! a.checked;

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