0

如何调用 footer.phtml 文件中的内置日历块?

app/design/frontend/base/default/template/page/js/calendar.phtml.

如何在我的 footer.phtml 中将该文件称为块?(即:我们写的时事通讯

<?php echo $this->getLayout()->createBlock('newsletter/subscribe')->setTemplate('newsletter‌​/subscribe.phtml')->toHtml(); ?> 

在页脚.phtml 中)

-谢谢

4

1 回答 1

0

尝试

<reference name="head">
        <action method="addItem"><type>js_css</type><name>calendar/calendar-win2k-1.css</name><params/><!--<if/><condition>can_load_calendar_js</condition>--></action>
        <action method="addItem"><type>js</type><name>calendar/calendar.js</name><!--<params/><if/><condition>can_load_calendar_js</condition>--></action>
        <action method="addItem"><type>js</type><name>calendar/calendar-setup.js</name><!--<params/><if/><condition>can_load_calendar_js</condition>--></action>
</reference>

在你的 calendar.phtml

<input type="text" name="date_from" id="date_from" value="" />

<script type="text/javascript">
Calendar.setup({
    inputField : 'date_from',
    ifFormat : '%m/%e/%y',
    button : 'date_from_trig',
    align : 'Bl',
    singleClick : true
});
</script>

在页脚.phtml

echo $this->getLayout()->createBlock(
    'core/template',
    'calendar_block',
    array('template' => 'path/to/calendar.phtml')
)->toHtml();

请参阅Magento - 如何添加返回 DD/MM/YY 而不是 MM/DD/YY 的前端日期选择器?

于 2013-02-08T03:57:05.153 回答