jquery-ui – 如何从Google CDN加载jQuery UI,区域设置不同于英语?

前端之家收集整理的这篇文章主要介绍了jquery-ui – 如何从Google CDN加载jQuery UI,区域设置不同于英语?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想加载一个不同于英语语言环境jQuery UI,而从 Google Hosted Libraries CDN加载jQuery UI?

有没有办法将I18n参数传入加载函数

google.load("jqueryui","1.7.2")

我也试过按照j001 UI文档Datepicker internationalization通过:

$(selector).datepicker($.datepicker.regional['pl']);

…但它没有做的伎俩:

解决方法

http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/i18n/jquery-ui-i18n.min.js

编辑:

它工作的唯一的google.load被省略,并使用标准JavaScript加载:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>
  <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"></script>
  <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/i18n/jquery-ui-i18n.min.js"></script>
原文链接:https://www.f2er.com/jquery/183828.html

猜你在找的jQuery相关文章