Moovweb:通过html在images /文件夹中指定资产?

时间:2014-02-09 13:42:20

标签: moovweb

我知道可以使用氚引用图像文件夹的内容。然而,我使用read()函数来引入一个html片段。有没有办法通过该html片段指定图像? 例如:

<img src='/moovweb_local_assets_/images/Logo150.png">' alt="1" /> 

1 个答案:

答案 0 :(得分:1)

我不知道这个,但我可以给你一些技巧。 将任何类或id添加到此img标记,并在tritium的帮助下添加src属性及其url。例如,

HTML:

<img id="myImage" alt="1" /> 

氚:

$$("#myImage"){
   attribute('src',asset('images/Logo150.png'));
}