我有一个textarea,其中包含锚标记及其内部内容形式的链接列表 例如。
<a href="http://example1.com/azaz" class="tex1"> Example 1</a>
<a href="http://example1.com/aza" class="tex1"> Example 2</a>
<a href="http://example1.com/za" class="tex2"> Example 3</a>
<a href="http://example1.com/az" class="tex2"> Example 4</a>
以上信息在textarea内给出。我想在点击提交后想要检索特定类的所有锚标记的href部分,如tex1。 例如我想输出像
我怎样才能实现这个使用Jquery / javascript
答案 0 :(得分:2)
试试这个
var text = $("textarea").val();
var res = $(text).map(function() {
return $(this).attr("href");
});
console.log(res);