Home > Web Front-end > JS Tutorial > [jQuery] Loop through and change the href of a tag

[jQuery] Loop through and change the href of a tag

PHP中文网
Release: 2017-07-12 18:11:11
Original
1322 people have browsed it

Add "#article" to all a tag links under the info category.

jQuery(document).ready(function($){
  $('.info a').each(function(){
   let Ahref = $(this).attr("href") + "#article";
  $(this).attr("href",Ahref);
  });
});

The above is the detailed content of [jQuery] Loop through and change the href of a tag. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template