12345678910111213 |
- /* Simplified Chinese initialisation for the jQuery UI multiselect plugin. */
- /* Written by Ben (ben@zfben.com). */
-
- (function ( $ ) {
-
- $.extend($.ech.multiselect.prototype.options, {
- checkAllText: '全选',
- uncheckAllText: '清空',
- noneSelectedText: '请选择',
- selectedText: '# 已选择'
- });
-
- })( jQuery );
|