String.prototype.digitGroup = function () {
// Code here
return;
}; // Add a semicolon here to avoid error
(function ($) {
$.fn.showDialog = function (options) {
// Code here
return this;
};
})($);
于 2012-07-11T08:23:07.337 回答
This answer is useful
3
只需在此函数后加一个分号即可
String.prototype.digitGroup = function () {
// Code here
return;
}; // Here