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.
テキストエリアに何かを入力していて、ボタンのクリックでhrefリンクに変換したいです。誰でもこれで私を助けることができますか?
$('button').click(function(){ var l = $('textarea').val(); $('<a/>', {href:'#', text: l}).appendTo('body'); });
フィドル