Hiya家伙我在博客上动态更改alt标签时遇到了问题。
我尝试使用以下脚本作为测试示例在我的旧博客上运行,但我将其添加到使用最新小部件的博客中。
<script>
$("img").each(function() {
$(this).attr('alt', '<data:title/>');
});
</script>
有什么想法吗?
答案 0 :(得分:1)
应该{{1}}而不是
<data:post.title/>
答案 1 :(得分: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'/>
答案 2 :(得分: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