4

嗨,伙计们,我在博客上动态更改 alt 标签时遇到了麻烦。

我尝试了以下脚本,该脚本适用于我的旧博客作为测试示例,但我将其添加到使用最新小部件的博主中。

<script>
$("img").each(function() {
$(this).attr('alt', '<data:title/>');
});
</script>

有什么想法吗?

4

3 回答 3

1

应该<data:post.title/>改为

<script>
$("img").each(function() {
$(this).attr('alt', '<data:post.title/>');
});
</script>
于 2015-05-16T06:18:58.077 回答
0
<script>
$("img").each(function() {
$(this).attr('alt', '<data:post.title/>');
});
</script>

博客的标题嵌入在 JQuery 代码中

data:blog.title
<data:post.title/>
<meta expr:content='data:blog.title' property='og:site_name'/>
于 2017-10-14T08:59:10.773 回答
0

代码自动将标题插入到图像中

<script type='text/javascript'>
  //<![CDATA[
  $(document).ready(function() {
    $('img').each(function(){
      var $img = $(this);
      var filename = $img.attr('src')
      $img.attr('alt', filename.substring((filename.lastIndexOf('/'))+1, filename.lastIndexOf('.')));
    });
  });
  //]]>
</script>
<script type='text/javascript'>
  //<![CDATA[
  $(document).ready(function() {
    $('img').each(function(){
      var $img = $(this);
      var filename = $img.attr('src')
      $img.attr('title', filename.substring((filename.lastIndexOf('/'))+1, filename.lastIndexOf('.')));
    });
  });
  //]]>
</script>

查看更多https://www.cuongbv.com/2018/12/code-inserts-alt-tag-automatically-in-blogger.html

于 2019-01-24T09:46:54.027 回答