gpt4 book ai didi

javascript - 键入 jQuery 删除类

转载 作者:行者123 更新时间:2023-11-30 12:11:26 29 4
gpt4 key购买 nike

Demo

我这里有一个验证类是否存在于 div 中的演示。当没有类时,另一个类将从按钮中删除。基本上,当没有禁用按钮时,添加按钮上的禁用将被删除。

如果用户做的最后一件事是更改,这可以正常工作,但如果他做的最后一件事是键入,则它不起作用。

这里有什么问题吗?

js

function toggleDisabled(target) {
var $target = $(target);
$target.toggleClass('disabled', !$target.val());
}
var $notnull = $('.notnull');

$(document).on('keyup, change', '.notnull', function (e) {
toggleDisabled(e.currentTarget);
});
$notnull.each(function (i, el) {
toggleDisabled(el);
});

function toggleDisabledNavButton(target) {
var $target = $(target);
var basic = $target.find('input,select').hasClass('disabled');
console.log(basic);
//console.log($target);
if (basic) {
$("#add").addClass('disabled');
} else {
$("#add").removeClass('disabled');
}
}
var detailscontainer = $('.notnull');

$(document).on('keyup, change, click', 'input:button,input.notnull,select.notnull', function (e) {
e.preventDefault();

toggleDisabledNavButton($(e.currentTarget).closest('.detailscontainer'));
});

detailscontainer.each(function (i, el) {
toggleDisabledNavButton(el.closest('.detailscontainer'));
});

如果您最后键入禁用的类,则不会从按钮中删除,但如果您在最后一个选项中进行选择,它将从按钮中删除类,这是我的问题。这是为什么?

最佳答案

删除选择器中的 ,:

$(document).on('keyup change', '.notnull', function (e) {

Fiddle

if you type last the class disabled is still not removed from button but if you make selecting in option the last it will remove the class from button that is my question. why is that

因为 , 再次:-

$(document).on('keyup change click', 'input:button,input.notnull,select.notnull', function (e) {

Fiddle

为什么

作为 jQuery documentation :-

.on( events [, selector ] [, data ], handler )

events Type: String

One or more space-separated event types and optional namespaces, such as "click" or "keydown.myPlugin".

关于javascript - 键入 jQuery 删除类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33691408/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com