google.Load jQuery UI 特定 CSS
加载 jQuery UI
google.load("jqueryui", "1.8.6");
我正在从 Google CDN 我希望主题 UI Darkness 与它相关联。 之外的任何其他方法
<link type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/ui-darkness/jquery-ui.css" />
除了类似的方法
google.load("jqueryui", "1.8.6","{theme: 'UI-Darkness'}");
I am loading jQuery UI as
google.load("jqueryui", "1.8.6");
from the Google CDN
And I want the theme UI Darkness to be associated with it.
Any other methods other than
<link type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/ui-darkness/jquery-ui.css" />
Something like
google.load("jqueryui", "1.8.6","{theme: 'UI-Darkness'}");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前 google loader 还不支持 jqueryui 的这种语法,你可以在这里查看文档。
http://code.google.com/intl/zh-CN/ apis/loader/#GoogleLoad
我认为参考标签中的链接仍然是您的情况的最佳方法。
So far google loader doesn't support this syntax for jqueryui, you can check the documentation here.
http://code.google.com/intl/zh-CN/apis/loader/#GoogleLoad
I think refer to the link in a tag is still the best way in your case.