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.
是否可以使用 jquery 或 javascript 将我输入到文本中的文本写入输入的值?
不太确定您要做什么,但也许这会有所帮助:
$('.textarea').keyup(function() { $('.another_input').val(this.value); });