如何使用jQuery来提取一个HTML 标记的属性 例如. 链接的href ?
小白
小白 2016-12-20 15:34:15
0
2
1236
小白
小白

好好学习,天天向上!!!

reply all(2)
数据分析师

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.

迷茫

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

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


Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template