gpt4 book ai didi

jquery - mandFields[i].css 不是函数第 6 行

转载 作者:行者123 更新时间:2023-12-01 07:25:40 25 4
gpt4 key购买 nike

我通过以下代码得到了该错误。有人知道为什么吗?

function validateAdminInput(){
var mandFields = $('.mand');

for(i=0; i< mandFields.length;i++){
if (mandFields[i].value == ""){
mandFields[i].css('border','solid red 1px');
}
}
}

最佳答案

mandFields[i] 为您提供底层 DOM 元素。如果您想访问 jQuery .css() 函数,则需要将其包装在 $(mandFields[i]) 中。

或者:

function validateAdminInput() {
$('.mand').each(function() {
if ($(this).val() == '') {
$(this).css('border','solid red 1px');
}
});
}

甚至:

function validateAdminInput() {
$('.mand[value=""]').css('border','solid red 1px');
}

关于jquery - mandFields[i].css 不是函数第 6 行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9759507/

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