我正在使用Drupal 6.x.这是我的node-product.tpl.php模板上的代码。我为这些产品创建了一个自定义jquery库。它工作得很好,但我只是缺少我的图像(大小缩略图)的工具提示。要上传图像我正在使用名为field_images的CCK字段。我在上传图像时输入了图像标题。如何添加工具提示代码段以使其正常工作?
<div class="product-large">
<img src="/sites/default/files/imagecache/360x280/<?php print $node->field_images[0]['filename']; ?>" />
</div>
<div class="product-small">
<?php
// get all images
foreach ($node->field_images as $images) {
?>
<img src="/sites/default/files/imagecache/120x90/<?php print $images['filename']; ?>" rel="/sites/default/files/imagecache/360x280/<?php print $images['filename']; ?>" />
<?php
}
?>
</div>
非常感谢!
克里斯
答案 0 :(得分:1)
“工具提示”是title
HTML属性的结果。您需要将title="foo"
添加到img
代码。
也许:
<img src="/sites/default/files/imagecache/120x90/<?php print $images['filename']; ?>" rel="/sites/default/files/imagecache/360x280/<?php print $images['data']['filename']; ?>" title="<?php print $images['title']; ?>"/>
表示第二张图片,$node->field_images[0]['data']['title']
表示第一张图片。