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.
我正在使用 innerText 向我的对象添加文本。有没有一种简单的方法可以在文本中添加超链接?“趋势”还有一个名为“链接”的属性。
this.node.innerText = trend.get('value');
使用**WRAP**功能
**WRAP**
$(someSelector).wrap(function() { var link = $('<a/>'); link.attr('href', 'somewhere_far_far_away'); link.text($(this).text()); return link; });
您需要使用 jQuery 的 wrap() 添加一个 DOM 元素:
$(this).wrap('<a href="..." />');
$(this).wrap('<a href="..." />')