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.
アンカータグに割り当てるURLを入力として取得しています。
URLが
var url = "http://www.google.com";
このURLをこのように入れたい
<a href="http://www.google.com">http://www.google.com</a>
document.createElement
var a = document.createElement('a'); a.href = "http://google.com"; a.textContent = a.href