gpt4 book ai didi

jquery - 如果 .parent() .hasclass 则不应用该函数

转载 作者:技术小花猫 更新时间:2023-10-29 11:47:01 25 4
gpt4 key购买 nike

我有这个函数,只有当父级没有 cooling 类时才应该调用它。

function inputWidth() {
$('input[disabled="disabled"]').removeAttr("disabled").prop("readonly", true);
$('input[type!="submit"]').focus(function(){
if ($(this).val().length > 20) {
$(this).attr('data-default', $(this).width());
$(this).animate({
width: 350
}, 'slow');
$(this).parent().addClass('cooling');
}
}).blur(function(){ /* lookup the original width */
var w = $(this).attr('data-default');
$(this).animate({
width: w
}, 'fast');
$(this).parent().removeClass('cooling');
});
};

最佳答案

if (!$(this).parent().hasClass('cooling'))
{
//your function
}

关于jquery - 如果 .parent() .hasclass 则不应用该函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9002148/

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