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 を使用して、入力テキスト要素 id="add-tag" から入力テキスト要素 id="show-tag" にテキストを挿入する必要があります
<form> <input name="add-tag" type="text" id="add-tag" /> <button>Send</button> <hr /> <input name="show-tag" type="text" id="show-tag" /> </form>
これを試して.val()
.val()
$(function () { $('#show-tag').val($('#add-tag').val()); });
デモ