search

Home  >  Q&A  >  body text

如何使用jQuery来提取一个HTML 标记的属性 例如. 链接的href ?

小白小白2900 days ago1241

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-09-30 23:11:22

    How to use jQuery to extract the attributes of an HTML tag e.g. the href of a link? -PHP Chinese Q&A-How to use jQuery to extract the attributes of an HTML tag, for example, the href of a link? -PHP Chinese website Q&A

    Please watch and learn.

    reply
    0
  • 迷茫

    迷茫2016-12-20 15:34:54

    attr() 方法被用来提取任意一个HTML元素的一个属性的值. 你首先需要利用jQuery选择及选取到所有的链接或者一个特定的链接,然后你可以应用attr()方法来获得他们的href属性的值。下面的代码会找到页面中所有的链接并返回href值:

    $('a').each(function(){
       alert($(this).attr('href'));
    });


    reply
    1
  • Cancelreply