恩恩真靓咯 發表於 2023-10-21 00:00:00

Dedecms实现列表缩图添加alt锚文本信息的解决方法

<span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>打开文件 list_article.htm 找到以下代码: </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><strong style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>代码如下 </strong><br><font color="#ff0000" style='line-height: 25.2px; font-size: 14px; font-family: tahoma, arial, "Microsoft YaHei";'>&lt;img src='{@me['litpic']}' /&gt; </font><br><br><strong style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>修改为以下代码: </strong><br><font color="#ff0000" style='line-height: 25.2px; font-size: 14px; font-family: tahoma, arial, "Microsoft YaHei";'>&lt;img src='{@me['litpic']}' /&gt;
<br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><strong style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>解决办法: </strong><br><font color="#ff0000" style='line-height: 25.2px; font-size: 14px; font-family: tahoma, arial, "Microsoft YaHei";'>打开文件 include/arc.listview.class.php 找到如下代码 </font><br><br><strong style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>代码如下 </strong><br><font color="#ff0000" style='line-height: 25.2px; font-size: 14px; font-family: tahoma, arial, "Microsoft YaHei";'>$row['title'] = "&lt;b&gt;".$row['title']."&lt;/b&gt;"; </font><br><br><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>将以上代码修改为以下代码: </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><strong style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>代码如下 </strong><br><font color="#ff0000" style='line-height: 25.2px; font-size: 14px; font-family: tahoma, arial, "Microsoft YaHei";'>$row['title'] = $row['title']; </font><br><br><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>这样dedecms列表缩图添加了alt锚文本信息就完成了. </span>
                        </font>
頁: [1]
查看完整版本: Dedecms实现列表缩图添加alt锚文本信息的解决方法