我正在使用Magento 1.7.0.2,我想截断长项目描述的文本。所以,我偶然发现了这个:http://www.jeremymartin.name/projects.php?project=jTruncate.
在my page.xml中调用以下脚本:
<action method="addJs"><script>jquery/jquery-1.8.3.min.js</script </action>
<action method="addJs"><script>jquery.jtruncate.js</script></action>
在我看来。我在顶部添加了以下行:
<script type="text/javascript">
$().ready(function() {
$('#maintext').jTruncate();
});
</script>
,在我的项目描述中,我使用了:
<p id="maintext">....text....</p>
Firefox告诉我脚本被加载了,没有出现错误,它不能工作。有人知道为什么或者有其他解决方案吗?谢谢你!
Try
Mage::helper('core/string')->truncate($string, $length);
看到Mage_Core_Helper_String。
。
<p id="maintext"><?php echo Mage::helper('core/string')->truncate('text', 2); ?></p>
参见
- jQuery不会加载
- https://gist.github.com/charmpitz/4016986