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.
我在 textarea 中输入了一些内容,并希望在单击按钮时将其转换为 href 链接。谁能帮我这个?
$('button').click(function(){ var l = $('textarea').val(); $('<a/>', {href:'#', text: l}).appendTo('body'); });
小提琴