我是 Plone 和 jQueryUI 的新手,并且无法让任何 jQueryUI 在 Plone 页面上工作。
我安装了 Plone 4 (4.1.4 41143) 和 jQueryUI 1.8.16 (http://plone.org/products/collective.js.jqueryui),
在 Zope 管理界面 > portal_javascripts 下,collective.js.jqueryui.custom.min.js 存在并启用。
为了尝试实现http://jqueryui.com/demos/button/中的示例,我放置在 Plone 页面的正文中:
<script type="text/javascript">
jQuery({function($) {
$( "input:submit, a, button", ".demo" ).button();
$( "a", ".demo" ).click(function() { return false; });
});
</script>
<DIV class=demo>
<BUTTON type=submit>A button element</BUTTON> <INPUT value="A submit button" type=submit> <A href="#">An anchor</A>
</DIV><!-- End demo -->
但结果页面未显示预期结果。
我尝试用“$”、“collective.js.jqueryui.custom.min”替换上面代码中的“jQuery”,但还没有任何效果。
我能够让一些 jQueryUI 在 Plone 之外工作,但有兴趣知道如何在 Plone 中使用它。任何帮助表示赞赏。