我有一个要通过函数传递的 HTML 字符串,并且我希望能够从函数内部对该变量执行 Jquery 方法 - 例如.attr('href')
or .text()
。我确信有一个简单的解决方案,并且比临时附加 DOM 更优雅。
HTML
<div class="here"></div>
Javascript
link = '<a href="http://www.google.com">Google</a>';
// This works
$('.here').html(link);
works = $('.here').text();
console.log(works);
// This doesn't
not = link.text();
console.log(not);