嗨,伙计们,我在博客上动态更改 alt 标签时遇到了麻烦。
我尝试了以下脚本,该脚本适用于我的旧博客作为测试示例,但我将其添加到使用最新小部件的博主中。
<script>
$("img").each(function() {
$(this).attr('alt', '<data:title/>');
});
</script>
有什么想法吗?
嗨,伙计们,我在博客上动态更改 alt 标签时遇到了麻烦。
我尝试了以下脚本,该脚本适用于我的旧博客作为测试示例,但我将其添加到使用最新小部件的博主中。
<script>
$("img").each(function() {
$(this).attr('alt', '<data:title/>');
});
</script>
有什么想法吗?
应该<data:post.title/>
改为
<script>
$("img").each(function() {
$(this).attr('alt', '<data:post.title/>');
});
</script>
<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'/>
代码自动将标题插入到图像中
<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