您有標題和 URL,並希望使用 JavaScript 建立超連結。當您需要從標題和連結對建立可點擊連結時,這在處理來自 RSS 提要或其他來源的資料時特別有用。
使用 JavaScript,您可以輕鬆建立連結一個網頁。一種方法是使用createElement 方法建立一個新元素,然後設定適當的屬性和特性:
<code class="javascript">// Create a new anchor (link) element var a = document.createElement('a'); // Set the text content of the link var linkText = document.createTextNode("my title text"); a.appendChild(linkText); // Set the title attribute for accessibility a.title = "my title text"; // Set the href attribute to specify the link's destination a.href = "http://example.com"; // Append the link to the body of the document document.body.appendChild(a);</code>
此程式碼使用提供的text 和href 屬性建立一個錨元素,並新增
如果您使用jQuery,您可以進一步簡化程式碼:
<code class="javascript">// Create a link using jQuery var $link = $('<a>').text('my title text').attr('href', 'http://example.com'); // Append the link to the body of the document $('body').append($link);</code>
此程式碼實作了相同的效果結果與前面的範例一樣,使用jQuery 簡寫。
以上是如何使用 JavaScript 動態建立超連結?的詳細內容。更多資訊請關注PHP中文網其他相關文章!