Jump to content
  • 0

Помогите разобраться с jQuery задачей


cupWebCode
 Share

Question

Если пишу не в тот раздел, извините...

Суть задачи следующая... Нужно сделать форму планирования задач на сегодня....

Изначально у меня есть 2-а input//text. Я пишу туда свою задачу которую нужно выполнить. После выполнения я нажимаю на checkbox который находится слева и к input//text добавляется атрибут disabled. Да, я написал код и описанное выше работает, но атрибут disabled добавляется ко всем input//text, а нужно только к одному.

Может я что-то делаю не так? кто знает подскажите....

Код HTML

—————-

<div id="rozklad">

<p class="title">Задачи на сегодня</p>

<p class="line"><input type="checkbox" value="1"/><input type="text" value="Напишите задачу"/></p>

<p class="line"><input type="checkbox" value="1"/><input type="text" value="Напишите задачу"/></p>

<input type="button" value="Добавить задачу" id="more"/>

</div>

Код jQuery

————--

$('.line').each(function() {

$(this).has(':checkbox').change(function() {

if ($('.line > :checkbox').is(':checked')) {

$('.line input[type=text]').attr('disabled', 'disabled');

} else {

$('.line input[type=text]').attr('disabled', false);

}

});

});

Спасибо...

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

НУ )) есть самый лучший ресурс с jquery http://jquery-docs.ru/. Там ты можешь все найти.

Смотри внимательно - у тебя же несколько элементов с классом LINE - поэтому происходит выборка input из всех строк))

всё просто - тебе нужна только одна строка.

прочитай про closest(), или parent() и отталкивайся именно от включенного чекбокса:

http://jsfiddle.net/u7Rw5/

  • Like 1
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