我正在尝试循环遍历不同的select
元素,检查值,如果匹配,则查找next() textarea
值,appendTo
汇总div
。
我正在使用change event
,但我总是得到Cannot read property 'appendTo' of undefined
(function () {
var $summary = $('#summary');
var testSelect = function () {
$('select option:selected').each(function () {
if ($(this).val() === "NC") {
if ($(this).val() === '') {
// do nothing
} else {
$(this).find('textarea').val().appendTo($summary);
}
}
});
}
window.addEventListener('change', testSelect, false);
})();
这是否意味着我的$summary
未定义