Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 onchange 事件将当前跨度的文本复制到隐藏字段。为什么我的 onchange 事件不起作用?http://jsfiddle.net/Hunter4854/qfdvE/
innerText不是 jQuery 方法;使用text. 此外,您将向后退,将隐藏的内容分配给跨度。所以代替这个:
innerText
text
$('#span').innerText($('#dropdown').val());
做这个:
$('#dropdown').val($('#span').text());