数据分析师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.
迷茫2016-12-20 15:34:54
attr() 方法被用来提取任意一个HTML元素的一个属性的值. 你首先需要利用jQuery选择及选取到所有的链接或者一个特定的链接,然后你可以应用attr()方法来获得他们的href属性的值。下面的代码会找到页面中所有的链接并返回href值:
$('a').each(function(){ alert($(this).attr('href')); });