2

如何在我的 zf 路径“public/js/isround.js”中添加我自己的 jQuery 插件?
- 使用 Zend 框架应用而不是手动放置:

<script> $("#world").isRound('myPlugin'); </script>
  1. jQuery 设置正在运行

    $this->jQuery()->setLocalPath('http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js')
                   ->enable()
                   ->setUiLocalPath('http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js')
                   ->uiEnable()
                   ->addStylesheet('http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/themes/ui-lightness/jquery-ui.css');
    
  2. 文件 application/views/scripts/index/index.phtml,我有:

    <div id="world"> _____我的 js 插件在这里应用 _____</div>

4

2 回答 2

1

这是你想要的?

$this->headScript()->appendFile('/js/isround.js');
于 2010-07-17T22:26:45.080 回答
0

使用视图助手。 zend 文档 查看:示例 #2 构建您自己的无冲突模式的 Helper

还有一个关于 viewhelpers 和 jquery Zendcast的教程

下面是一些代码: 在您的库文件夹中创建一个名为 Mylib 的文件夹。在其中创建一个文件夹视图。在视图中创建一个文件夹助手。在帮助程序中创建一个名为:IsRound.php 的文件

<?php

class Mylib_Views_Helpers_IsRound {
    public function isRound($elem){
        echo '<script type="text/javascript">$("'.$elem.'").isRound();</script>';
    }
}

在 IndexController.php 中的 indexAction

$this->view->addHelperPath('Mylib/views/helpers', 'Mylib_Views_Helpers');

在 index.phtml 中:

<?php $this->isRound('#elem'); ?>

希望这可以帮助!

于 2010-07-18T00:56:34.490 回答