2

我正在使用 Magento 1.7.0.2,我想截断长项目描述的文本。所以,我偶然发现了这个:http ://www.jeremymartin.name/projects.php?project=jTruncate 。

在我的 page.xml 中,调用了以下脚本:

<action method="addJs"><script>jquery/jquery-1.8.3.min.js</script </action>
<action method="addJs"><script>jquery.jtruncate.js</script></action>

在我的 view.phtml 中,我在顶部添加了以下行:

<script type="text/javascript">
$().ready(function() {  
    $('#maintext').jTruncate();  
}); 
</script>   

在我的物品描述中,我使用了:

<p id="maintext">....text....</p>

Firefox 告诉我脚本已加载,没有出现错误并且它不起作用。任何人有任何想法为什么或替代解决方案?谢谢!

4

1 回答 1

7

尝试

Mage::helper('core/string')->truncate($string, $length);

请参阅 Mage_Core_Helper_String。

例如。

<p id="maintext"><?php echo Mage::helper('core/string')->truncate('text', 2); ?></p>

另见

于 2013-05-07T11:15:07.263 回答