开发者问题收集

未捕获的类型错误:无法读取未定义的属性

2021-09-20
3661

我得到此错误:

791649972

我的目标是触发图标选择器函数也同时更改输入值。

我的代码:

342074418
2个回答

我从 js 文件中解决了这个问题。我将我的任务添加到函数中。

jQuery(this).addClass('selectedicon');
if (jQuery(selector).attr('class') == whichInputClass && jQuery(selector).attr('id') == whichInputId) {
    jQuery(selector).val('fa-'+getIconId).change();
    $('.input1').append( ('fa-'+getIconId) ); // I added this line
}
attack-to-overflow
2021-09-20

您需要在 jQuery 中添加元素索引,因为选择器返回一个数组

$('.input1')[0]
Amir Saadallah
2021-09-20