Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个数据库中的类别列表,我们在页面上回显如下:
echo '<li><a href=#?id='.$row['category_id'] .' "> ' . $row['category_name'] . '</a></li>';
当我将鼠标分别悬停在这些链接上时,我将如何回显数据库中的相应图像(category_image)?
我是否隐藏了一个 div,然后让它与里面的图像悬停在一起?但那我如何转移身份证?
category_image 是路径,而不是实际图像。
只需输出图像,通过 CSS 将其隐藏并在悬停时显示。无需往返服务器即可获取任何内容。;-)