Methods for replacing HTML element attributes with regular expressions _javascript tips

Source: Internet
Author: User

A regular expression replaces any attribute of any HTML element, or increases any property.

/**
 * Replaces any attr value in any tag within HTML
 * @param src_str
 * @param tag
 * @param attr
 * @param val
 * @returns {* }
 *
/replace_html_tag_attr:function (SRC_STR, Tag, attr, Val) {
  if (typeof src_str = = ' undefined ' | | typeof t AG = = ' undefined ' | | typeof attr = = ' undefined ' | | typeof val = = ' undefined ') {return
    ';
  }

  var reg = new RegExp (' < ' + tag + ' [^>]* (' + attr + ' =[\ ' \ "] (\\w*%?) [\'\"])? [^>]*> ', ' gi ');
  Return Src_str.replace (Reg, function (match) {
    if (Match.indexof (attr) > 0) {
      //contains attr attribute, replace attr
      var Sub_reg = new RegExp (attr + ' =[\ ' \ "] (\\w*%?) [\ '] ', ' gi ');
      Return Match.replace (Sub_reg, attr + ' = ' + val);
    } else{
      //does not contain attr attribute, add attr return
      match.substr (0, Tag.length + 1) + ' + attr + ' = ' + val + ' + match.substr (ta G.length + 2, match.length);}}

Above this regular expression replaces the HTML element attribute the method is small series to share to everybody's content, hoped can give everybody a reference, also hoped that everybody supports the cloud habitat community.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.