jQuery UI 和 CodeIgniter/Boilerplate...对话框模式无法正常工作

发布于 2024-12-13 20:31:44 字数 410 浏览 0 评论 0原文

我正在尝试使用 jQuery UI 来调出对话框模式。我将它与 CodeIgniter 和 HTML5Boilerplate 结合使用。

在正常的空白 html 页面中,我可以让对话框代码工作(只需从 google 导入 css 和 jquery 脚本。

在 CodeIgniter 视图中,它不起作用。整个输出在这里: http://pastebin.com/5e2PfE14

我在 script.js 文件中使用的脚本是

$(function() {
    $( "#dialog" ).dialog();
});

:工作正常,那么可能是什么问题

I am trying to use the jQuery UI to bring up a dialog modal. I am using it in conjuction with CodeIgniter and HTML5Boilerplate.

In a normal, blank html page, I can get the dialog code to work (just importing the css and jquery scripts from google.

In the CodeIgniter view, it doesn't work. The entire output is here: http://pastebin.com/5e2PfE14

The script that I am using, in my scripts.js file is:

$(function() {
    $( "#dialog" ).dialog();
});

The imports are working fine, so what could be the issue?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

携君以终年 2024-12-20 20:31:44

通过 如果您使用 apache mod_rewrite 来删除 index.php 检查规则(也许某些东西不允许您的 javascript、css 或图像)。还要检查您的配置文件中是否设置了 $config['base_url'] 。

Include all javascript and css files by <link rel="stylesheet" href="<?php echo site_url('css/style.css'); ?>" /> and if you use apache mod_rewrite for removing index.php check rules (maybe something disallow your javascript, css or images). Also check in your config file whether $config['base_url'] is set .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文