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); });