嗨,我正在使用 jquery 周历和 php 日历,但如果像这样放置查询文件,我会遇到冲突。
在我的 header.phtml 文件中,代码是
<head>
<?php
echo $this->headTitle('dddd');
$this->headMeta()
->setHttpEquiv('Content-Type', 'text/html;charset=utf-8')
->appendName('keywords', '')
->appendName('author', '')
->appendName('copyright', '')
->appendName('description', '');
$this->headLink()->headLink(array('rel' => 'favicon', 'href' => '/favicon.ico'), 'PREPEND');
$this->headLink()
->appendStylesheet($this->baseUrl.'/styles/layout.css', 'all')
->appendStylesheet($this->baseUrl.'/scripts/jquery/jquery.css', 'all');
$this->headScript()->appendFile('http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js');
$this->headScript()->appendFile('http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js);
$oFront = Zend_Controller_Front::getInstance();
if($oFront->getRouter()->getCurrentRouteName() == "template-schedules-edit-template-schedule" ){
$this->headScript()->appendFile($this->baseUrl.'/scripts/jquery/plugins/weekcalendar/jquery-ui.min.js');
}else{
$this->headScript()->appendFile('http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.19/jquery-ui.min.js');
}
echo $this->headMeta();
echo $this->headLink();
echo $this->headScript();
?>
</head>
在这里,我将 jquery/1.3.2/jquery.min.js 用于 jquery 周历,将 jquery/1.7.2/jquery.js 用于 php canlender ..
请帮帮我。这是我在堆栈溢出中的第一个问题。
/uday