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'); });
フィドル
I'm trying to convert a IList<IList<object>> to IList<object>, I mean to have a unique and one list where contains all the element (objec
IList<IList<object>>
IList<object>