jquery动态添加alt、keywords、description、title

1.jquery给img动态添加alt属性

$(document).ready(function(){
      $("img").each(function(){
        $(this).attr('alt','11111');
      });
});

2.动态添加keywords、description关键字

$("meta[http-equiv='X-UA-Compatible']").after(
     `
      `
);

3.动态添加页面title

document.title = 'title';

你可能感兴趣的:(前端seojquery)