yepnope.js - 同一页面上的脚本存在问题
我包含了 yepnope.js,然后包含以下内容:
<script type="text/javascript">
/*<![CDATA[*/
yepnope([{
load: 'http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js',
complete: function () {
if (!window.jQuery) {
yepnope('local/jquery.min.js');
} ...
然而,当 jquery 从 cdn 加载时,页面末尾的以下脚本显示错误:
/*<![CDATA[*/
jQuery(function($) {
jQuery('#Project_projectDateStart').datepicker({'dateFormat...
错误是 jQuery 未定义
我有没有选择,只能在最后加载脚本(在本例中使用 Yii datepicker 加载)。
非常感谢任何帮助。
I included yepnope.js and then the following:
<script type="text/javascript">
/*<![CDATA[*/
yepnope([{
load: 'http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js',
complete: function () {
if (!window.jQuery) {
yepnope('local/jquery.min.js');
} ...
However, while jquery is loading from the cdn, the following script at the end of the page is showing an error:
/*<![CDATA[*/
jQuery(function($) {
jQuery('#Project_projectDateStart').datepicker({'dateFormat...
the error is jQuery is not defined
I have no option but to load the script at the end (loaded with Yii datepicker in this instance).
Any help much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果要使用 yepnope,则需要使用回调函数。您不能直接调用 jQuery,因为它是异步加载的。解析 yepnopejs.com 上的文档有点困难,但这就是要点。
基本上,据我所知,Yii 的默认 AJAX 和其他 JS 助手都不能与 Yenope 一起工作。或者,如果它们确实有效,那将是因为 Yii 除了从 Google 加载的 yepnope 异步之外还包含了 jQuery 的另一个副本。您可能需要做大量工作来修改 Yii 加载脚本的方式,以使其与像 yepnope 这样的异步加载器一起正常工作。
不过祝你好运!异步加载器对于页面性能非常有用,我一直使用 Facebook 的加载器。
If you are going to use yepnope, you need to use callback functions. You cannot directly call jQuery since it is loaded asynchronously. It's a little difficult to parse the documentation on yepnopejs.com but that's the gist of it.
Basically, none of Yii's default AJAX and other JS helpers are going to work with yenope, from what I can tell. Or if they do work, it will be because Yii included another copy of jQuery in addition to the yepnope async loaded on from Google. You will probably need to do a bunch of work modifying the way Yii loads scripts to get it work correctly with an asynchronous loader like yepnope.
Good luck though! Async loaders are great for page performance, I use the Facebook one all the time.