头文件中的jquery冲突

时间:2012-09-27 13:24:49

标签: javascript jquery conflict

您好我正在使用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 ..

请帮帮我。这是我在堆栈中的第一个问题。

/乌代

2 个答案:

答案 0 :(得分:2)

您不需要两个版本的jQuery。只需使用一个,你应该没事。摆脱以下几行:

$this->headScript()->appendFile('http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js);  

答案 1 :(得分:0)

如果您正在创建新代码,则应避免使用2个版本的jQuery(使用最新版本并根据需要进行调整)。如果由于某种原因你会遇到两种情况(难以处理的遗留代码),那么有关于有两个版本共存的信息:Running Multiple versions of jQuery at the same time