gpt4 book ai didi

javascript - jquery 头文件冲突

转载 作者:行者123 更新时间:2023-12-02 19:20:12 26 4
gpt4 key购买 nike

嗨,我正在使用 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

最佳答案

您不需要两个版本的 jQuery。只需使用一个就可以了。删除以下行:

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

关于javascript - jquery 头文件冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12622466/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com