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テーブルに追加してtdにリンクボタンを作成するために、次の行を使用します。この行を使用すると、リンクボタンは青色での表示をサポートしません。そのリンクボタンのスタイルを青のように指定するにはどうすればよいですか?
.append($("<td/>", {'html': '<a href="#" id="id1" style="color:Blue" class="cls1" >Link Button</a>' }))
このように、簡単な方法で使用します
.append($("<td/>").append($("<a/>",{"href":"#","html":"Link","id":"id1","style":"color:blue","class":"cls1" })))