如何在我的 zf 路径“public/js/isround.js”中添加我自己的 jQuery 插件?
- 使用 Zend 框架应用而不是手动放置:
<script> $("#world").isRound('myPlugin'); </script>
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');
文件 application/views/scripts/index/index.phtml,我有:
<div id="world"> _____我的 js 插件在这里应用 _____</div>