使用jquery从textarea获取Anchor Tag

时间:2014-12-10 12:16:59

标签: javascript jquery html css

我有一个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。 例如我想输出像

  

http://example1.com/azaz
http://example1.com/aza

我怎样才能实现这个使用Jquery / javascript

1 个答案:

答案 0 :(得分:2)

试试这个

var text = $("textarea").val();

var res = $(text).map(function() { 

       return $(this).attr("href");
});

console.log(res);

FIDDLE