jQuery UI 和 CodeIgniter/Boilerplate...对话框模式无法正常工作
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过
如果您使用 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 .