0

可能重复:
向 osCommerce tep_image 函数添加类属性

我需要在 osCommerce 中为图像添加一个 ID 或一个类,以便我可以使用媒体查询调整它的大小。

我已经尝试class="classname"在此语句中添加所有内容,但它总是无法正常工作。

由于我的案例中的“bts_select”,关于 tep_image 的类似问题似乎不合适。

tep_image(bts_select(images, 'logo' . (ITS_CHRISTMAS == 'true' ? '-xmas' : '') . '.gif'), STORE_NAME) . '</a>'
4

1 回答 1

1

tep_image ()函数没有记录,但源代码相当简单:

function tep_image($src, $alt = '', $width = '', $height = '', $parameters = '') {
    //[...]
    if (tep_not_null($parameters)) $image .= ' ' . $parameters;

    $image .= ' />';

    return $image;
}

第五个参数在结束标记之前按原样注入。这就是你所需要的。

于 2013-01-10T16:54:50.360 回答