Fox = {}; Fox.Strings = { add: function (object) { jQuery.extend(this, object); return this; } }; Fox.Options = { // Fox.Options.add('key', {...}); add: function (key, data) { var o = {}; o[key] = data; jQuery.extend(this, o); return this; }, // Return by copy: Fox.Options.get('key'); // Return by reference: Fox.Options['key']; get: function (key) { return jQuery.extend({}, this[key]); } }; (function () { Fox.Strings.add( { JCANCEL: "取消", COM_FOXCONTACT_BROWSE_FILES: "览文g", COM_FOXCONTACT_FAILED: "已失?, COM_FOXCONTACT_SUCCESS: "已成?, COM_FOXCONTACT_NO_RESULTS_MATCH: "未找到匹配结?, COM_FOXCONTACT_MISSING_JQUERY: "Can't find jQuery framework, Fox Contact will not work properly.", COM_FOXCONTACT_READ_MORE: "阅读更多...", COM_FOXCONTACT_REMOVE_ALT: "删除", JURI_ROOT: "" } ); Date.monthNames = ["1?, "2?, "3?, "4?, "5?, "6?, "7?, "8?, "9?, "10?, "11?, "12?]; Date.dayNames = ["星期?, "星期一", "星期?, "星期?, "星期?, "星期?, "星期?]; Date.monthNumbers = { "1?: 0, "2?: 1, "3?: 2, "4?: 3, "5?: 4, "6?: 5, "7?: 6, "8?: 7, "9?: 8, "10?: 9, "11?: 10, "12?: 11 }; // Calendar default options Fox.Options.add('calendar', { dayOfWeekStart: JSON.parse("1"), lang: 'dynamic', i18n: { dynamic: { months: Date.monthNames, dayOfWeek: ["?, "一", "?, "?, "?, "?, "?] } } }); })(); jQuery(document).ready(function ($) { $('.fox-item-captcha-img-reload').each(function () { $(this).click(function () { var image = document.getElementById($(this).attr("data-captcha-img")); // Generates a unique id with an 8 digits fixed length var uniqueid = Math.floor(Math.random() * Math.pow(10, 8)).toString(); while (uniqueid.length < 8) { uniqueid = '0' + uniqueid; } // Update the image src image.src = image.src .replace(/uniqueid=[0-9]{8}/, "uniqueid=" + uniqueid) // non SEF case .replace(/uniqueid\/[0-9]{8}/, "uniqueid/" + uniqueid) // SEF case ; }).show(); }); }); /* Enable the following function if you want to enable autofocus to the first input of the first form in the page */ /* jQuery(document).ready(function ($) { $('.fox-form').find('input[type=text]').filter(':visible:first').focus(); }); */