-1

我正在使用 jRating - jQuery Plugin v2.2(最新版本),我可以让它在 html 中工作,但是当我将所有内容添加到我的 ZF 项目时它不起作用。星图不显示..路径是 100% 我已经三重检查了。我对 jQuery 灯箱插件的图像也有问题,上一个、下一个和关闭图像按钮不起作用,ZF jQuery 和图像是否缺少一些东西?

这是采埃孚版本:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html>
    <head>
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8" >            <title>Clubs - Manchester Nightlife</title>
<link href="/MN/public/css/jRating.jquery.css" media="screen" rel="stylesheet"     type="text/css" >
<script type="text/javascript" src="/MN/public/js/jquery.js"></script>
<script type="text/javascript" src="/MN/public/js/jRating.jquery.js"></script>
    </head>
    <body>
<div class="exemple">
    <div class="basic" id="12_1"></div>
</div>
    <script type="text/javascript">
    $(document).ready(function(){
        $('.basic').jRating();
    });
</script>
</div>
    <div class="clear"></div>
    </div>
</body>

这是ZF版本

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Pluggin jRating : Ajax rating system with jQuery</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="jquery/jRating.jquery.css" type="text/css" />
</head>
<body>
<div class="exemple">
<div class="basic" id="4_1"></div>
</div>
<script type="text/javascript" src="jquery/jquery.js"></script>
<script type="text/javascript" src="jquery/jRating.jquery.js"></script>
<script type="text/javascript">
    $(document).ready(function(){
        $('.basic').jRating();
    });
</script>

由于我使用 ZF 方式将它们添加到 head 标签中的方式,脚本标签位于不同的位置:

$this->headScript()->prependFile($this->baseUrl('/js/jquery.js'));

谢谢

4

1 回答 1

0

每当我使用 ZendX 的 JQuery 库时,我总是必须将以下代码添加到布局的标题中

<?php echo $this->headLink();
      echo $this->headScript();
      $this->jQuery()->setUiVersion( '1.8.7' )->setVersion( '1.4.4' );
      echo $this->jQuery(); ?>

我不知道为什么会这样,但确实如此。

确保将视图助手添加到 application.ini

resources.view.helperPath.ZendX_JQuery_View_Helper = APPLICATION_PATH "/../library/ZendX/JQuery/View/Helper"

然后在 bootstrap.php

protected function _initViewHelpers()
{
    $view = new Zend_View();
    $viewRenderer = new Zend_Controller_Action_Helper_ViewRenderer();

    $view->addHelperPath('ZendX/JQuery/View/Helper/', 'ZendX_JQuery_View_Helper');
    $view->addHelperPath('ZendX/JQuery/View/Helper/JQuery', 'ZendX_JQuery_View_Helper_JQuery');

    $viewRenderer->setView($view);
    Zend_Controller_Action_HelperBroker::addHelper($viewRenderer);

}
于 2012-05-01T23:40:39.360 回答