Антон Кравцов Asked:2020-06-03 15:50:59 +0800 CST2020-06-03 15:50:59 +0800 CST 2020-06-03 15:50:59 +0800 CST 通过js输出值 772 我想从页面中取出div的值,通过js输出到控制台(需要通过ajax进一步发送这个值),但是控制台是空的,值不显示 这是js中的一块 $(".custom-select__item", this).click(function () { selectItem($(this).html(), $(this).attr('data-value')); $(context).removeClass('active'); let carName = $(".custom-select__selected").val(); console.log(carName); 和页面截图 javascript 1 个回答 Voted Best Answer vantal 2020-06-03T16:13:02+08:002020-06-03T16:13:02+08:00 目前尚不完全清楚为什么需要这段代码,以及在你的 htmldata-value中的什么位置,对于你在问题中写的内容,这段代码就足够了: let carName = $(".custom-select__selected").html(); console.log(carName);
目前尚不完全清楚为什么需要这段代码,以及在你的 html
data-value
中的什么位置,对于你在问题中写的内容,这段代码就足够了: