Я пытаюсь выяснить, как найти, когда щелкают мой тег привязки, как предотвратить набор совпадающих элементов, чтобы он не срабатывал.Вот мой javascript
//open the dialog box
$('.update').click(function (event) {
var $target = event.target;
if ($target == $target) {
$('.update-form').dialog('open');
console.log('yep');
} else {
console.log('nope');
}
return false;
});
Вот HTML
<tbody>
<tr>
<th>Designer</th>
<th>Style</th>
<th>Color</th>
<th>Size</th>
<th>Detials</th>
<th>Notes</th>
</tr>
<tr style="background-color: rgb(201, 201, 201); color: rgb(255, 255, 255); ">
<td>JASZ COUTURE</td>
<td>4210</td>
<td>GOLD</td>
<td>S</td>
<td> STRAPPY STETCH COCKTAIL</td>
<td></td>
<td><a href="http://localhost:8888/lexsreg/index.php/#" class="update">UPDATE</a></td>
</tr>
<tr>
<td>test</td>
<td>4as451</td>
<td>test</td>
<td>test</td>
<td>tes</td>
<td>tes</td>
<td><a href="http://localhost:8888/lexsreg/index.php/#" class="update">UPDATE</a></td>
</tr>
</tbody>
Я знаю, что event.target возвращает значение на основе индекса элемента с соответствующим набором.Как мне сказать другим элементам не стрелять.Что происходит, в зависимости от количества тегов привязки с классом обновления, откроет так много модальных окон.Мне нужен только один, а не целая куча
Заранее спасибо!
//set the functions of the dialog box
$('.update-form').dialog({
autoOpen: false,
height: 300,
width: 350,
modal: true,
draggable: false,
resizable: false,
buttons: {
'Update': function() {
//json will happen here
},
'Cancel': function() {
$(this).dialog('close');
}
},
close: function() {
allFields.val('').removeClass('ui-state-error');
}
});
Получил решение, которое уродливо, но оно работает. Дайте модальным окнам равные идентификаторы
$updateForm.each(function(index) {
$(this).attr('id', index);
});
При нажатии пройти событие и получить текущий целевой идентификатор.Пройдите по дереву DOM и найдите модальное окно, идентификатор которого соответствует этому.
//open the dialog box for the rows
$($btns).click(function(event) {
var target = event.currentTarget.id,
form = $(this)
.parent()
.parent()
.parent()
.parent()
.parent()
.parent()
.siblings()
.children()
.filter('#'+target);
$(form).dialog('open');
return false;
});